Index: content/test/data/accessibility/modal-dialog-in-iframe-closed.html |
diff --git a/content/test/data/accessibility/modal-dialog-in-iframe-closed.html b/content/test/data/accessibility/modal-dialog-in-iframe-closed.html |
deleted file mode 100644 |
index 9c46c57b3429d4422a25d4df7ef3db4860eda63d..0000000000000000000000000000000000000000 |
--- a/content/test/data/accessibility/modal-dialog-in-iframe-closed.html |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-<!-- |
-@MAC-ALLOW:AXSubrole=* |
---> |
-<html> |
-<body> |
-Test for modal dialog closed in an iframe. |
-<iframe scrolling="no"></iframe> |
-<script> |
-var frameCode = |
- '<dialog>Text in the dialog.</dialog>\n' + |
- '<button>I am a non-inert button!</button>\n'; |
- |
-var iframeDoc = document.querySelector('iframe').contentDocument; |
-iframeDoc.open(); |
-iframeDoc.write(frameCode); |
-iframeDoc.close(); |
- |
-var dialog = iframeDoc.querySelector('dialog'); |
-dialog.showModal(); |
-dialog.close(); |
-</script> |
-</body> |
-</html> |