blob: 2588c569f3bc068fb8aab17c9f3e9da5d89b60a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
[0010]
IE id problem
No.1
expr : /html/body/div
time : 0.000000 sec
result: <div> <div id=tags> <div id=getElementsByTagName> <div id=getElementById> <div id=children> <div id=nodeType> <div id=length>
expect: div div#tags div#getElementsByTagName div#getElementById div#children div#nodeType div#length
judge : OK (-)
No.2
expr : //body//div
time : 0.000000 sec
result: <div> <div id=aaa> <div id=tags> <div id=getElementsByTagName> <div id=getElementById> <div id=children> <div id=nodeType> <div id=length>
expect: div div#aaa div#tags div#getElementsByTagName div#getElementById div#children div#nodeType div#length
judge : OK (-)
No.3
expr : //div[@id="aaa"]
time : 0.016000 sec
result: <div id=aaa>
expect: div#aaa
judge : OK (-)
No.4
expr : id("aaa")
time : 0.000000 sec
result: <div id=aaa>
expect: div#aaa
judge : OK (-)
|