summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/file_bug504862.html
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-01-22 10:35:12 +0000
committerGitHub <noreply@github.com>2020-01-22 10:35:12 +0000
commit8e33fa9c4b5e4fb3ddfa11b7722cc74df3f94eca (patch)
tree1fa82c7349a85865717c83dedbba38aae87fe8b9 /dom/tests/mochitest/bugs/file_bug504862.html
parent722161775b9ec9314d1b02f567e42b83115cf993 (diff)
parenta9290ef91ec408fa7886b99cc59be40b413a0ce0 (diff)
downloadUXP-8e33fa9c4b5e4fb3ddfa11b7722cc74df3f94eca.tar
UXP-8e33fa9c4b5e4fb3ddfa11b7722cc74df3f94eca.tar.gz
UXP-8e33fa9c4b5e4fb3ddfa11b7722cc74df3f94eca.tar.lz
UXP-8e33fa9c4b5e4fb3ddfa11b7722cc74df3f94eca.tar.xz
UXP-8e33fa9c4b5e4fb3ddfa11b7722cc74df3f94eca.zip
Merge pull request #1367 from g4jc/showmodaldialog
Completely remove showModalDialog
Diffstat (limited to 'dom/tests/mochitest/bugs/file_bug504862.html')
-rw-r--r--dom/tests/mochitest/bugs/file_bug504862.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/dom/tests/mochitest/bugs/file_bug504862.html b/dom/tests/mochitest/bugs/file_bug504862.html
deleted file mode 100644
index dc11ced6f..000000000
--- a/dom/tests/mochitest/bugs/file_bug504862.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-<body>
-<script>
-window.returnValue = 3;
-
-if (location.toString().match(/^http:\/\/mochi.test:8888/)) {
- // Test that we got the right arguments.
- opener.is(window.dialogArguments, "my args",
- "dialog did not get the right arguments.");
-
- // Load a different url, and test that it sees the arguments (since it's same origin).
- window.location="data:text/html,<html><body onload=\"opener.is(window.dialogArguments, 'my args', 'subsequent dialog document did not get the right arguments.'); close();\">';";
-} else {
- // Post a message containing our arguments to the opener to test
- // that this cross origing dialog does *not* see the passed in
- // arguments.
- opener.postMessage("args: " + window.dialogArguments,
- "http://mochi.test:8888");
-
- close();
-}
-</script>