Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: content/test/data/accessibility/aria/aria-searchbox.html

Issue 1315703004: Added browser tests for caret position and selection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Android tests. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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-ALLOW:xml-roles*
5 @WIN-ALLOW:caret_offset*
6 @WIN-ALLOW:n_selections*
7 @WIN-ALLOW:selection_start*
8 @WIN-ALLOW:selection_end*
5 --> 9 -->
6 <!DOCTYPE html> 10 <!DOCTYPE html>
7 <html> 11 <html>
8 <body> 12 <body>
9 <div role="searchbox">ARIA role searchbox.</div> 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>
10 </body> 19 </body>
11 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698