blob: 9f26d10499ce7765e02525b68eaaa7ca3b591adc [file] [log] [blame]
<!--
@BLINK-ALLOW:inputType=*
@BLINK-ALLOW:textSel*
@BLINK-ALLOW:htmlInputName*
@MAC-ALLOW:AXRoleDescription
@WIN-ALLOW:PROTECTED
@WIN-ALLOW:IA2_STATE*
@WIN-ALLOW:text-input-type*
@WIN-ALLOW:caret_offset*
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:n_selections*
@WIN-ALLOW:selection_start*
@WIN-ALLOW:selection_end*
@WIN-ALLOW:html-input-name*
@AURALINUX-ALLOW:focus*
@AURALINUX-ALLOW:editable
@AURALINUX-ALLOW:caret_offset*
@AURALINUX-ALLOW:selection_start*
@AURALINUX-ALLOW:selection_end*
@AURALINUX-ALLOW:text-input-type:*
@AURALINUX-ALLOW:html-input-name*
-->
<!DOCTYPE html>
<html>
<body>
<input type="password" value="secret" name="xyz">
<script>
var input = document.querySelector('input');
input.focus();
input.setSelectionRange(6, 6);
</script>
</body>
</html>