blob: 68ebbc5060694014fe89f472f7dbe2ddb7b4d719 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
[0006]
Descendant Test
No.1
expr : //*
time : 0.000000 sec
result: <html> <head> <title> <body> <h1>
expect: html head title body h1
judge : OK (-)
No.2
expr : //node()
time : 0.015000 sec
result: <html> <head> <title> title <body> <h1> foo
expect: html head title text("title"):gecko:opera:applewebkit:netfront body h1 text("foo")
judge : OK (-)
No.3
expr : /descendant::*
time : 0.000000 sec
result: <html> <head> <title> <body> <h1>
expect: html head title body h1
judge : OK (-)
No.4
expr : /descendant::node()
time : 0.000000 sec
result: <html> <head> <title> title <body> <h1> foo
expect: html head title text("title"):gecko:opera:applewebkit:netfront body h1 text("foo")
judge : OK (-)
No.5
expr : /descendant-or-self::*
time : 0.000000 sec
result: <html> <head> <title> <body> <h1>
expect: html head title body h1
judge : OK (-)
No.6
expr : /descendant-or-self::node()
time : 0.000000 sec
result: <[document]> <html> <head> <title> title <body> <h1> foo
expect: document() html head title text("title"):gecko:opera:applewebkit:netfront body h1 text("foo")
judge : OK (-)
No.7
expr : //*//*
time : 0.000000 sec
result: <head> <title> <body> <h1>
expect: head title body h1
judge : OK (-)
No.8
expr : //node()//node()
time : 0.016000 sec
result: <head> <title> title <body> <h1> foo
expect: head title text("title"):gecko:opera:applewebkit:netfront body h1 text("foo")
judge : OK (-)
No.9
expr : //*/descendant::*
time : 0.000000 sec
result: <head> <title> <body> <h1>
expect: head title body h1
judge : OK (-)
No.10
expr : //node()/descendant::node()
time : 0.015000 sec
result: <head> <title> title <body> <h1> foo
expect: head title text("title"):gecko:opera:applewebkit:netfront body h1 text("foo")
judge : OK (-)
No.11
expr : //*/descendant-or-self::*
time : 0.000000 sec
result: <html> <head> <title> <body> <h1>
expect: html head title body h1
judge : OK (-)
No.12
expr : //node()/descendant-or-self::node()
time : 0.016000 sec
result: <html> <head> <title> title <body> <h1> foo
expect: html head title text("title"):gecko:opera:applewebkit:netfront body h1 text("foo")
judge : OK (-)
No.13
expr : //*[1]
time : 0.000000 sec
result: <html> <head> <title> <h1>
expect: html head title h1
judge : OK (-)
No.14
expr : //node()[1]
time : 0.000000 sec
result: <html> <head> <title> title <h1> foo
expect: html head title text("title"):gecko:opera:applewebkit:netfront h1 text("foo")
judge : OK (-)
No.15
expr : /descendant::*[1]
time : 0.000000 sec
result: <html>
expect: html
judge : OK (-)
No.16
expr : /descendant::node()[1]
time : 0.000000 sec
result: <html>
expect: html
judge : OK (-)
No.17
expr : /descendant-or-self::*[1]
time : 0.000000 sec
result: <html>
expect: html
judge : OK (-)
No.18
expr : /descendant-or-self::node()[1]
time : 0.000000 sec
result: <[document]>
expect: document()
judge : OK (-)
No.19
expr : //*//*[1]
time : 0.015000 sec
result: <head> <title> <h1>
expect: head title h1
judge : OK (-)
No.20
expr : //node()//node()[1]
time : 0.000000 sec
result: <head> <title> title <h1> foo
expect: head title text("title"):gecko:opera:applewebkit:netfront h1 text("foo")
judge : OK (-)
No.21
expr : //*/descendant::*[1]
time : 0.000000 sec
result: <head> <title> <h1>
expect: head title h1
judge : OK (-)
No.22
expr : //node()/descendant::node()[1]
time : 0.000000 sec
result: <head> <title> title <h1> foo
expect: head title text("title"):gecko:opera:applewebkit:netfront h1 text("foo")
judge : OK (-)
No.23
expr : //*/descendant-or-self::*[1]
time : 0.000000 sec
result: <html> <head> <title> <body> <h1>
expect: html head title body h1
judge : OK (-)
No.24
expr : //node()/descendant-or-self::node()[1]
time : 0.000000 sec
result: <html> <head> <title> title <body> <h1> foo
expect: html head title text("title"):gecko:opera:applewebkit:netfront body h1 text("foo")
judge : OK (-)
|