OLD | NEW |
1 <!-- | 1 <!-- |
2 @MAC-ALLOW:AXRole* | 2 @MAC-ALLOW:AXRole* |
3 @MAC-ALLOW:AXSubrole* | 3 @MAC-ALLOW:AXSubrole* |
4 @WIN-ALLOW:xml-roles* | 4 @WIN-DENY:description* |
5 @WIN-ALLOW:caret_offset* | 5 @WIN-ALLOW:caret_offset* |
| 6 @WIN-ALLOW:ia2_hypertext=* |
6 @WIN-ALLOW:n_selections* | 7 @WIN-ALLOW:n_selections* |
7 @WIN-ALLOW:selection_start* | 8 @WIN-ALLOW:selection_start* |
8 @WIN-ALLOW:selection_end* | 9 @WIN-ALLOW:selection_end* |
| 10 @WIN-ALLOW:xml-roles* |
9 --> | 11 --> |
10 <!DOCTYPE html> | 12 <!DOCTYPE html> |
11 <html> | 13 <html> |
12 <body> | 14 <body> |
13 <!-- There should be no caret because searchbox is not content editable. --> | 15 <!-- There should be no caret because searchbox is not content editable. --> |
14 <div id="searchbox" role="searchbox" tabindex="0">ARIA role searchbox.</div> | 16 <div id="searchbox" role="searchbox" tabindex="0">ARIA role searchbox.</div> |
15 <script> | 17 <script> |
16 var searchbox = document.getElementById('searchbox'); | 18 var searchbox = document.getElementById('searchbox'); |
17 searchbox.focus(); | 19 searchbox.focus(); |
18 </script> | 20 </script> |
19 </body> | 21 </body> |
20 </html> | 22 </html> |
OLD | NEW |