1 |
wakaba |
1.1 |
<!DOCTYPE html> |
2 |
|
|
<html> |
3 |
|
|
<head> |
4 |
|
|
<title>DOM3 XPath vs HTML Document</title> |
5 |
|
|
</head> |
6 |
|
|
<body> |
7 |
|
|
<h1>DOM3 XPath vs HTML Document</h1> |
8 |
|
|
|
9 |
|
|
<div align="center">An element with <code>align=center</code>.</div> |
10 |
|
|
|
11 |
|
|
<div align="Center">An element with <code>align=Center</code>.</div> |
12 |
|
|
|
13 |
|
|
<div align="CENTER">An element with <code>align=CENTER</code>.</div> |
14 |
|
|
|
15 |
|
|
<p id="status"></p> |
16 |
|
|
|
17 |
|
|
<script type="text/javascript"> |
18 |
|
|
document.getElementById ('status').appendChild |
19 |
|
|
(document.createTextNode ('FAIL')); |
20 |
|
|
var nl = document.evaluate ('//*[@align = "CENTER"]', document, null, |
21 |
|
|
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); |
22 |
|
|
for (var i = 0; i < nl.snapshotLength; i++) { |
23 |
|
|
nl.snapshotItem (i).style.color = 'blue'; |
24 |
|
|
} |
25 |
|
|
document.getElementById ('status').firstChild.data |
26 |
|
|
= '"//*[@align = "CENTER"]" elements are colored blue.'; |
27 |
|
|
</script> |
28 |
|
|
<noscript>NOSCRIPT</noscript> |
29 |
|
|
|
30 |
|
|
</body> |
31 |
|
|
</html> |