https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c4de0019f3aa95861f0c9f646e9cd0c0f1252594 authored by Anne van Kesteren on 23 March 2018, 17:49:38 UTC
Comment out SVGElement dependency from html.idl
Tip revision: c4de001
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