https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 90af5a7d86dcab4526c9340163f90d36a57caba8 authored by Catalin Badea on 11 April 2018, 13:20:49 UTC
Implement Request.destination.
Tip revision: 90af5a7
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