Index: content/test/data/accessibility/aom/aom-modal.html |
diff --git a/content/test/data/accessibility/aom/aom-modal.html b/content/test/data/accessibility/aom/aom-modal.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..36b6427fedd5c38a2953711b3b6f3c826c9354d0 |
--- /dev/null |
+++ b/content/test/data/accessibility/aom/aom-modal.html |
@@ -0,0 +1,17 @@ |
+<!-- |
+@WIN-ALLOW:xml-roles:* |
+@WIN-ALLOW:IA2_STATE_MODAL |
+@BLINK-ALLOW:modal* |
+--> |
+<!DOCTYPE html> |
+<html> |
+<body> |
+ <div role="dialog">Nonmodal</div> |
+ <div id="modal" role="dialog">Modal</div> |
+ |
+ <script> |
+ document.getElementById("modal").accessibleNode.modal = true; |
+ </script> |
+ |
+</body> |
+</html> |