Index: ManualTests/modal-dialog-arguments.html |
diff --git a/ManualTests/modal-dialog-arguments.html b/ManualTests/modal-dialog-arguments.html |
deleted file mode 100644 |
index 99161372b70cd43db34a2878a43b02aa1dab2a1e..0000000000000000000000000000000000000000 |
--- a/ManualTests/modal-dialog-arguments.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<html> |
-<script> |
-function runTest() { |
- var o = { }; |
- showModalDialog("data:text/html,<scr" + "ipt>dialogArguments['result'] = 'PASS'; window.close() </scr" + "ipt>", o); |
- |
- if (o.result == 'PASS') |
- document.getElementById('result').innerHTML = 'SUCCESS'; |
-} |
- |
-</script> |
-<body> |
-<div> |
-This tests that modal dialog arguments get passed around correctly. Click the button below to test. The text "SUCCESS" will be shown below if the test was successful. |
-</div> |
-<button onclick="runTest()">Click Me!</button> |
-<div id="result"> |
-</div> |
-</html> |