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

Side by Side Diff: content/test/data/accessibility/aom/aom-multiselectable.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 @WIN-ALLOW:xml-roles:*
3 @WIN-ALLOW:MULTISELECTABLE
4 @WIN-ALLOW:EXTSELECTABLE
5 @BLINK-ALLOW:multiselectable*
6 -->
7 <!DOCTYPE html>
8 <html>
9 <body>
10 <div role="listbox" id="multiselectabletrue"></div>
11 <div role="listbox" id="multiselectablefalse"></div>
12
13 <script>
14 document.getElementById("multiselectabletrue").accessibleNode.multiselectabl e = true;
15 document.getElementById("multiselectablefalse").accessibleNode.multiselectab le = false;
16 </script>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698