blob: 94729b32667f92cef05a7b05f545a20d05ddac9d [file]
<!--
@MAC-ALLOW:AXRole*
@MAC-ALLOW:AXPlaceholder*
@WIN-ALLOW:caret_offset*
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:IA2_STATE*
@WIN-ALLOW:n_selections*
@WIN-ALLOW:selection_start*
@WIN-ALLOW:selection_end*
@WIN-ALLOW:text-input-type*
@AURALINUX-ALLOW:text-input-type*
@AURALINUX-ALLOW:*-line
@AURALINUX-ALLOW:editable
@AURALINUX-ALLOW:focus*
@BLINK-ALLOW:inputType=*
@BLINK-ALLOW:textSel*
-->
<!DOCTYPE html>
<html>
<body>
<input type="text" value="Selection">
<script>
var input = document.querySelector("input");
input.focus();
input.setSelectionRange(3, 5);
</script>
</body>
</html>