https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 203878e8f195402f12ec1a5ec0d9a3af70f95e62 authored by Simon Pieters on 18 August 2016, 21:15:08 UTC
Test that setting innerText on <br> etc doesn't throw
Tip revision: 203878e
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