https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 40d551e832b97a6041f7b093d5f20cf07b381eef authored by Charles Harrison on 23 February 2018, 16:02:30 UTC
[tab-under] Add tentative WPT for tab-under blocking
Tip revision: 40d551e
setSelectionRange.html
<!doctype html>
<meta charset="utf-8">
<title></title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<textarea>

</textarea>
<script>
test(function() {
    let textarea = document.querySelector('textarea');
    assert_equals(textarea.selectionStart, 0);
    assert_equals(textarea.selectionEnd, 0);
    textarea.setSelectionRange(0, 1);
    assert_equals(textarea.selectionStart, 0);
    assert_equals(textarea.selectionEnd, 1);
}, "setSelectionRange on line boundaries");
</script>
back to top