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

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

Issue 2787843003: Add Accessibility Object Model to content features, and add a browser test. (Closed)
Patch Set: Rebase 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 <!--
esprehn 2017/04/04 05:44:10 doctype? We usually prefer standards mode unless t
dmazzoni 2017/04/04 19:01:33 Done.
2 @BLINK-ALLOW:checked
3 @BLINK-ALLOW:*Mixed*
4 @MAC-ALLOW:AXRole*
5 @WIN-ALLOW:CHECKED*
6 @WIN-ALLOW:MIXED*
7 -->
8 <html>
9 <body>
10 <div role="checkbox" tabindex=0 id="c1"></div>
11 <div role="checkbox" tabindex=0 id="c2"></div>
12 <div role="checkbox" tabindex=0 id="c3"></div>
13 <div role="checkbox" tabindex=0 id="c4"></div>
14 <script>
15 document.getElementById("c2").accessibleNode.checked = "true";
16 document.getElementById("c3").accessibleNode.checked = "false";
17 document.getElementById("c4").accessibleNode.checked = "mixed";
18 </script>
19 </body>
20 </html>
OLDNEW
« no previous file with comments | « content/public/common/content_features.cc ('k') | content/test/data/accessibility/aom/aom-checked-expected-android.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698