https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3da663385acdd3ef9ef170ab2e167fd643c7b317 authored by James Graham on 19 October 2016, 12:43:59 UTC
Enable logging test stability results to GitHub PR.
Tip revision: 3da6633
selection-after-content-change.html
<!doctype html>
<meta charset="utf-8">
<title>Selection indices after content change</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  test(function() {
    var input = document.createElement("input");
    input.focus();
    input.value = "something something something dark side";
    input.setSelectionRange(4,20);
    assert_equals(input.selectionStart, 4);
    assert_equals(input.selectionEnd, 20);
    input.value = "It's a trap!";
    assert_equals(input.selectionStart, input.value.length);
    assert_equals(input.selectionEnd, input.value.length);
}, "Selection indices after reseting content");
</script>
back to top