https://github.com/web-platform-tests/wpt
Raw File
Tip revision: aa1f02a879a9b27b65e60acc905566d0398f92bc authored by Anne van Kesteren on 09 April 2018, 12:47:29 UTC
Remove generate_tests from NodeIterator.html
Tip revision: aa1f02a
type.html
<!doctype html>
<title>Selection.type tests</title>
<div id=log></div>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=common.js></script>
<script>
"use strict";

test(() => {
  assert_equals(getSelection().rangeCount, 0, "Sanity check");
  assert_equals(getSelection().type, "None");
}, "Empty selection");

for (var i = 0; i < testRanges.length; i++) {
  var endpoints = eval(testRanges[i]);
  if (!isSelectableNode(endpoints[0]) || !isSelectableNode(endpoints[2])) {
      continue;
  }
  test(() => {
    var range = rangeFromEndpoints(endpoints);
    getSelection().removeAllRanges();
    getSelection().addRange(range);
    if (endpoints[0] == endpoints[2] && endpoints[1] == endpoints[3]) {
      assert_equals(getSelection().type, "Caret");
    } else {
      assert_equals(getSelection().type, "Range");
    }
  }, testRanges[i]);
}
</script>
back to top