mirror of
https://github.com/servo/servo.git
synced 2025-07-02 21:13:39 +01:00
20 lines
657 B
HTML
20 lines
657 B
HTML
<!doctype html>
|
|
<title>XPath parent of documentElement</title>
|
|
<script src='/resources/testharness.js'></script>
|
|
<script src='/resources/testharnessreport.js'></script>
|
|
<body>
|
|
<script>
|
|
test(function() {
|
|
var result = document.evaluate("..", // expression
|
|
document.documentElement, // context node
|
|
null, // resolver
|
|
XPathResult.ANY_TYPE, // type
|
|
null); // result
|
|
var matched = [];
|
|
var cur;
|
|
while ((cur = result.iterateNext()) !== null) {
|
|
matched.push(cur);
|
|
}
|
|
assert_array_equals(matched, [document]);
|
|
});
|
|
</script>
|