https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9f65d811032d205ffa4cebf3449c1e8e3fecd5c4 authored by Ting-Yu Lin on 26 December 2018, 18:48:28 UTC
Shrink columns width in column-span reftests to fit the window on wpt.
Tip revision: 9f65d81
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