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

Side by Side Diff: content/test/data/accessibility/event/aria-treeitem-focus.html

Issue 2897943003: Fix DumpAccessibilityEvents tests on Mac and improve test coverage (Closed)
Patch Set: Rebaseline one more windows test Created 3 years, 7 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 <!DOCTYPE html>
2 <html>
3 <body>
4 <ul id="tree" role="tree" tabindex="0" aria-activedescendant="before">
5 <li id="before" role="treeitem" tabindex="0" aria-expanded="false">
6 Major
7 </li>
8 <li role="treeitem" tabindex="0" aria-expanded="true">
9 Minor
10 </li>
11 <ul role="group">
12 <li role="treeitem" tabindex="0">
13 Minor Seventh
14 </li>
15 <li id="after" role="treeitem" tabindex="0">
16 Minor Ninth
17 </li>
18 </ul>
19 </ul>
20 <script>
21 var tree = document.getElementById('tree');
22 tree.focus();
23 function go() {
24 tree.setAttribute('aria-activedescendant', 'after');
25 }
26 </script>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698