Update broken references to image assets
[chromium-blink-merge.git] / content / test / data / accessibility / html / input-password.html
blob31666fd461e6f47c0f913a24aa3b2f9cd1ffdc13
1 <!--
2 @MAC-ALLOW:AXRole*
3 @MAC-ALLOW:AXSubrole*
4 @WIN-ALLOW:PROTECTED
5 @WIN-ALLOW:IA2_STATE*
6 @WIN-ALLOW:text-input-type*
7 @WIN-ALLOW:value='•*
8 @WIN-ALLOW:caret_offset*
9 -->
10 <!DOCTYPE html>
11 <html>
12 <body>
13 <input type="password" value="secret">
14 <script>
15 var input = document.querySelector("input");
16 input.focus();
17 input.setSelectionRange(6, 6);
18 </script>
19 </body>
20 </html>