https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4b90437e8c2a8cca4b8c4af28d1893ac6f0fc61c authored by Domenic Denicola on 10 August 2016, 23:35:08 UTC
Add multi-global tests for service worker URL parsing
Tip revision: 4b90437
selection-not-application-textarea.html
<!DOCTYPE html>
<meta charset=utf-8>
<title>text field selection (textarea)</title>
<link rel="author" title="Denis Ah-Kang" href="mailto:denis@w3.org">
<link rel=help href="https://html.spec.whatwg.org/multipage/#textFieldSelection">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
  test(function() {
    var el = document.createElement("textarea");
    assert_equals(el.selectionStart, 0);
    assert_equals(el.selectionEnd, 0);
    el.selectionStart = 1;
    el.selectionEnd = 1;
    el.selectionDirection = "forward";
    el.setRangeText("foobar");
    el.setSelectionRange(0, 1);
  }, "text field selection for the input textarea");
</script>
back to top