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

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: Update webexposed 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 <!DOCTYPE html>
2 <!--
3 @BLINK-ALLOW:checked
4 @BLINK-ALLOW:*Mixed*
5 @MAC-ALLOW:AXRole*
6 @WIN-ALLOW:CHECKED*
7 @WIN-ALLOW:MIXED*
8 -->
9 <html>
10 <body>
11 <div role="checkbox" tabindex=0 id="c1"></div>
12 <div role="checkbox" tabindex=0 id="c2"></div>
13 <div role="checkbox" tabindex=0 id="c3"></div>
14 <div role="checkbox" tabindex=0 id="c4"></div>
15 <script>
16 document.getElementById("c2").accessibleNode.checked = "true";
17 document.getElementById("c3").accessibleNode.checked = "false";
18 document.getElementById("c4").accessibleNode.checked = "mixed";
19 </script>
20 </body>
21 </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