blob: 6a9ac0314f29cb636181895c457bed4b85edfd1f (
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
|
[0007]
Ancestor Test
No.1
expr : id("t")/ancestor::*
time : 0.000000 sec
result: <html> <body>
expect: html body
judge : OK (-)
No.2
expr : id("t")/ancestor::node()
time : 0.016000 sec
result: <[document]> <html> <body>
expect: document() html body
judge : OK (-)
No.3
expr : id("t")/ancestor-or-self::*
time : 0.000000 sec
result: <html> <body> <h1 id=t>
expect: html body h1
judge : OK (-)
No.4
expr : id("t")/ancestor-or-self::node()
time : 0.000000 sec
result: <[document]> <html> <body> <h1 id=t>
expect: document() html body h1
judge : OK (-)
No.5
expr : id("t")/ancestor-or-self::node()/ancestor::*
time : 0.000000 sec
result: <html> <body>
expect: html body
judge : OK (-)
No.6
expr : id("t")/ancestor-or-self::node()/ancestor::node()
time : 0.000000 sec
result: <[document]> <html> <body>
expect: document() html body
judge : OK (-)
No.7
expr : id("t")/ancestor-or-self::node()/ancestor-or-self::*
time : 0.000000 sec
result: <html> <body> <h1 id=t>
expect: html body h1
judge : OK (-)
No.8
expr : id("t")/ancestor-or-self::node()/ancestor-or-self::node()
time : 0.015000 sec
result: <[document]> <html> <body> <h1 id=t>
expect: document() html body h1
judge : OK (-)
No.9
expr : id("t")/ancestor::*[1]
time : 0.000000 sec
result: <body>
expect: body
judge : OK (-)
No.10
expr : id("t")/ancestor::node()[1]
time : 0.000000 sec
result: <body>
expect: body
judge : OK (-)
No.11
expr : id("t")/ancestor-or-self::*[1]
time : 0.000000 sec
result: <h1 id=t>
expect: h1
judge : OK (-)
No.12
expr : id("t")/ancestor-or-self::node()[1]
time : 0.000000 sec
result: <h1 id=t>
expect: h1
judge : OK (-)
No.13
expr : id("t")/ancestor-or-self::node()/ancestor::*[1]
time : 0.000000 sec
result: <html> <body>
expect: html body
judge : OK (-)
No.14
expr : id("t")/ancestor-or-self::node()/ancestor::node()[1]
time : 0.000000 sec
result: <[document]> <html> <body>
expect: document() html body
judge : OK (-)
No.15
expr : id("t")/ancestor-or-self::node()/ancestor-or-self::*[1]
time : 0.000000 sec
result: <html> <body> <h1 id=t>
expect: html body h1
judge : OK (-)
No.16
expr : id("t")/ancestor-or-self::node()/ancestor-or-self::node()[1]
time : 0.000000 sec
result: <[document]> <html> <body> <h1 id=t>
expect: document() html body h1
judge : OK (-)
|