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

Side by Side Diff: content/test/data/accessibility/aom/aom-expanded.html

Issue 2796223003: Boolean attributes for Accessibility Object Model Phase 1 (Closed)
Patch Set: Created 3 years, 8 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:AXExpanded*
3 @WIN-ALLOW:EXPANDED*
4 @WIN-ALLOW:COLLAPSED*
5 @WIN-ALLOW:HASPOPUP*
6 @BLINK-ALLOW:expanded*
7 -->
8 <ul role="menu" style="list-style-type: none">
9 <li id="i1" role="menuitem" aria-haspopup="true">New</li>
10 <li id="i2" role="menuitem" aria-haspopup="true">Open</li>
11 <li id="i3" role="menuitem">Save</li>
12 <li id="i4" role="menuitem">Quit</li>
13
14 <script>
15 document.getElementById("i1").accessibleNode.expanded = false;
16 document.getElementById("i2").accessibleNode.expanded = true;
17 document.getElementById("i3").accessibleNode.expanded = false;
18 document.getElementById("i4").accessibleNode.expanded = true;
19 </script>
20 </ul>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698