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

Side by Side Diff: content/test/data/accessibility/aria/aria-searchbox-with-selection.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 most of the expectations. 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
(Empty)
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">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);
David Tseng 2015/08/28 16:08:46 It would be great to do this natively (using acces
dmazzoni 2015/08/28 21:48:53 Maybe in a different test? That couldn't be done f
22 </script>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698