Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / content / test / data / accessibility / aria / aria-searchbox.html
blobc0d99fe82c00e97e9d0addc418890870a137af53
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 <!-- There should be no caret because searchbox is not content editable. -->
14 <div id="searchbox" role="searchbox" tabindex="0">ARIA role searchbox.</div>
15 <script>
16 var searchbox = document.getElementById('searchbox');
17 searchbox.focus();
18 </script>
19 </body>
20 </html>