Revision 826375a734caf3cbe9b757ca69dbef9d578aa76d authored by Robert Ma on 26 March 2018, 20:24:51 UTC, committed by GitHub on 26 March 2018, 20:24:51 UTC
1 parent 7988e17
Raw File
document.tentative.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>
back to top