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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/aom/aom-checked.html
diff --git a/content/test/data/accessibility/aom/aom-checked.html b/content/test/data/accessibility/aom/aom-checked.html
new file mode 100644
index 0000000000000000000000000000000000000000..e29bf28190c83e0a7da9ae586c3346e3c165bd83
--- /dev/null
+++ b/content/test/data/accessibility/aom/aom-checked.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<!--
+@BLINK-ALLOW:checked
+@BLINK-ALLOW:*Mixed*
+@MAC-ALLOW:AXRole*
+@WIN-ALLOW:CHECKED*
+@WIN-ALLOW:MIXED*
+-->
+<html>
+<body>
+ <div role="checkbox" tabindex=0 id="c1"></div>
+ <div role="checkbox" tabindex=0 id="c2"></div>
+ <div role="checkbox" tabindex=0 id="c3"></div>
+ <div role="checkbox" tabindex=0 id="c4"></div>
+ <script>
+ document.getElementById("c2").accessibleNode.checked = "true";
+ document.getElementById("c3").accessibleNode.checked = "false";
+ document.getElementById("c4").accessibleNode.checked = "mixed";
+ </script>
+</body>
+</html>
« 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