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> |