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

Unified Diff: content/test/data/accessibility/aom/aom-busy.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 side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/aom/aom-busy.html
diff --git a/content/test/data/accessibility/aom/aom-busy.html b/content/test/data/accessibility/aom/aom-busy.html
new file mode 100644
index 0000000000000000000000000000000000000000..84b7065e0de8b1872e70b2217642b664a2757466
--- /dev/null
+++ b/content/test/data/accessibility/aom/aom-busy.html
@@ -0,0 +1,20 @@
+<!--
+@MAC-ALLOW:AXARIABusy*
+@MAC-ALLOW:AXRole*
+@MAC-ALLOW:AXSubrole*
+@WIN-ALLOW:BUSY*
+@BLINK-ALLOW:busy*
+-->
+<!DOCTYPE html>
+<html>
+<body>
+ <div id="busytrue" role="log"></div>
+ <div id="busyfalse" role="log"></div>
+
+ <script>
+ document.getElementById("busytrue").accessibleNode.busy = true;
+ document.getElementById("busyfalse").accessibleNode.busy = false;
+ </script>
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698