blob: c9ec012b2efb09ba3c3580e2885b3aa52f2893d0 [file]
<!--
@BLINK-ALLOW:inputType=*
@BLINK-ALLOW:textSel*
@MAC-ALLOW:AXRole*
@MAC-ALLOW:AXSubrole*
@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*
@AURALINUX-ALLOW:focus*
@AURALINUX-ALLOW:editable
-->
<!DOCTYPE html>
<html>
<body>
<input type="password" value="secret">
<script>
var input = document.querySelector('input');
input.focus();
input.setSelectionRange(6, 6);
</script>
</body>
</html>