Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / content / test / data / accessibility / aria / aria-searchbox-with-selection.html
blob7fde0f5cb18088cc0ab6b01e28e4436e32cf123a
1 <!--
2 @MAC-ALLOW:AXRole*
3 @MAC-ALLOW:AXSubrole*
4 @WIN-ALLOW:xml-roles*
5 @WIN-ALLOW:caret_offset*
6 @WIN-ALLOW:n_selections*
7 @WIN-ALLOW:selection_start*
8 @WIN-ALLOW:selection_end*
9 -->
10 <!DOCTYPE html>
11 <html>
12 <body>
13 <div id="searchbox" role="searchbox" tabindex="0">ARIA role searchbox.</div>
14 <script>
15 var selection = window.getSelection();
16 var selectionRange = document.createRange();
17 var searchbox = document.getElementById('searchbox');
18 searchbox.focus();
19 selectionRange.selectNodeContents(searchbox);
20 selection.removeAllRanges();
21 selection.addRange(selectionRange);
22 </script>
23 </body>
24 </html>