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
173
174
175
176
177
|
<html>
<head>
<script src="../../js/resources/js-test-pre.js"></script>
<script src="../xpath-test-pre.js"></script>
</head>
<body>
<div id="console"></div>
<script>
var doc = (new DOMParser).parseFromString(
'<doc>' +
' <para id="1" />' +
' <div id="2" />' +
' <para id="3" />' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, "para", [doc.getElementsByTagName("para")[0], doc.getElementsByTagName("para")[1]]);
test(doc, doc.documentElement, "*", [doc.getElementsByTagName("para")[0], doc.getElementsByTagName("div")[0], doc.getElementsByTagName("para")[1]]);
doc = (new DOMParser).parseFromString('<doc>This is <i>some</i> text.</doc>', 'application/xml');
test(doc, doc.documentElement, "text()", [doc.documentElement.firstChild, doc.documentElement.lastChild]);
doc = (new DOMParser).parseFromString('<doc name="foo" value="bar" />', 'application/xml');
test(doc, doc.documentElement, "@name", [doc.documentElement.getAttributeNode("name")]);
test(doc, doc.documentElement, "@*", [doc.documentElement.getAttributeNode("name"), doc.documentElement.getAttributeNode("value")]);
doc = (new DOMParser).parseFromString('<doc><para id="1" /><para id="2" /><para id="3" /></doc>', 'application/xml');
test(doc, doc.documentElement, "para[1]", [doc.getElementsByTagName("para")[0]]);
test(doc, doc.documentElement, "para[last()]", [doc.getElementsByTagName("para")[2]]);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <chapter><para id="1" /><para id="2" /></chapter>' +
' <section><para id="3" /><sub><para id="4" /></sub></section>' +
' <para id="4" />' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, "*/para", [doc.getElementsByTagName("para")[0], doc.getElementsByTagName("para")[1], doc.getElementsByTagName("para")[2]]);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <chapter id="1" /><chapter id="2" /><chapter id="3" />' +
' <chapter id="4">' +
' <section id="4.1" /><section id="4.2" /><section id="4.3" />' +
' </chapter>' +
' <chapter id="5">' +
' <section id="5.1" /><section id="5.2" /><section id="5.3" />' +
' </chapter>' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, "/doc/chapter[5]/section[2]", [doc.getElementsByTagName("section")[4]]);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <chapter><para id="1" /><para id="2" /></chapter>' +
' <chapter><section><para id="3" /></section></chapter>' +
' <para id="4" />' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, "chapter//para", [doc.getElementsByTagName("para")[0], doc.getElementsByTagName("para")[1], doc.getElementsByTagName("para")[2]]);
doc = (new DOMParser).parseFromString(
'<para id="0">' +
' <div id="1" />' +
' <para id="2">' +
' <para id="3" />' +
' </para>' +
'</para>',
'application/xml');
test(doc, '//para[@id="2"]', '//para', [doc.getElementsByTagName("para")[0], doc.getElementsByTagName("para")[1], doc.getElementsByTagName("para")[2]]);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <item id="1">' +
' <context />' +
' <olist><item id="2" /></olist>' +
' </item>' +
' <olist><item id="3" /></olist>' +
'</doc>',
'application/xml');
test(doc, '//context', '//olist/item', [doc.getElementsByTagName("item")[1], doc.getElementsByTagName("item")[2]]);
doc = (new DOMParser).parseFromString(
'<doc id="0">' +
' <para id="1"/>' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, '.', [doc.documentElement]);
doc = (new DOMParser).parseFromString(
'<para id="0">' +
' <div id="1" />' +
' <para id="2">' +
' <para id="3" />' +
' </para>' +
'</para>',
'application/xml');
test(doc, '//para[@id="2"]', './para', [doc.getElementsByTagName("para")[2]]);
doc = (new DOMParser).parseFromString(
'<doc id="0">' +
' <chapter id="1">' +
' <item id="2" />' +
' <item id="3"><subitem id="4" /></item>' +
' </chapter>' +
'</doc>',
'application/xml');
test(doc, '//item[@id="3"]', '..', [doc.getElementsByTagName("chapter")[0]]);
doc = (new DOMParser).parseFromString(
'<doc id="0">' +
' <chapter id="1" lang="en">' +
' <item id="2" />' +
' <item id="3"><subitem id="4" /></item>' +
' </chapter>' +
'</doc>',
'application/xml');
test(doc, '//item[@id="3"]', '../@lang', [doc.getElementsByTagName("chapter")[0].getAttributeNode("lang")]);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <para id="1" type="info" />' +
' <para id="2" type="warning" />' +
' <para id="3" type="warning" />' +
' <para id="4" type="error" />' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, 'para[@type="warning"]', [doc.getElementsByTagName("para")[1], doc.getElementsByTagName("para")[2]]);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <para id="1" type="info" />' +
' <para id="2" type="warning" />' +
' <para id="3" type="warning" />' +
' <para id="4" type="warning" />' +
' <para id="5" type="error" />' +
' <para id="6" type="warning" />' +
' <para id="7" type="warning" />' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, 'para[@type="warning"][5]', [doc.getElementsByTagName("para")[6]]);
test(doc, doc.documentElement, 'para[5][@type="warning"]', []);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <chapter id="1" />' +
' <chapter id="2"><title>Introduction</title></chapter>' +
' <chapter id="3"><title>Body</title></chapter>' +
' <chapter id="4">' +
' <title>Another</title>' +
' <title>Introduction</title>' +
' </chapter>' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, "chapter[title='Introduction']", [doc.getElementsByTagName("chapter")[1], doc.getElementsByTagName("chapter")[3]]);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <chapter id="1" />' +
' <chapter id="2"><title /></chapter>' +
' <chapter id="3"><title /><title /></chapter>' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, "chapter[title]", [doc.getElementsByTagName("chapter")[1], doc.getElementsByTagName("chapter")[2]]);
doc = (new DOMParser).parseFromString(
'<doc>' +
' <employee name="Alice" />' +
' <employee name="Bob" secretary="Cathy" />' +
' <employee name="Dianne" secretary="Edward" assistant="Fran" />' +
'</doc>',
'application/xml');
test(doc, doc.documentElement, "employee[@secretary and @assistant]", [doc.getElementsByTagName("employee")[2]]);
</script>
</body>
</html>
|