summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/bug346659-opener.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/tests/mochitest/bugs/bug346659-opener.html')
-rw-r--r--dom/tests/mochitest/bugs/bug346659-opener.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/dom/tests/mochitest/bugs/bug346659-opener.html b/dom/tests/mochitest/bugs/bug346659-opener.html
new file mode 100644
index 0000000000..d9d6128047
--- /dev/null
+++ b/dom/tests/mochitest/bugs/bug346659-opener.html
@@ -0,0 +1,9 @@
+<body onload="postBack();">
+ <script>
+ function postBack() {
+ var s = decodeURIComponent(window.location.search.substring(1));
+ window.opener.postMessage(s, "http://mochi.test:8888");
+ }
+ var childWin = window.open();
+ </script>
+</body>