diff options
Diffstat (limited to 'dom/base/test/test_setting_opener.html')
-rw-r--r-- | dom/base/test/test_setting_opener.html | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/dom/base/test/test_setting_opener.html b/dom/base/test/test_setting_opener.html new file mode 100644 index 0000000000..3021c2d0de --- /dev/null +++ b/dom/base/test/test_setting_opener.html @@ -0,0 +1,125 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=868996 +--> +<head> + <meta charset="utf-8"> + <title>Test for Bug 868996</title> + <script src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> + <script type="application/javascript"> + + /** Test for Bug 868996 **/ + SimpleTest.waitForExplicitFinish(); + + var sb1, sb2; + var Cu = SpecialPowers.Cu; + + function testOpenerSet() { + // Use setTimeout to make the relevant onerror run in this window + var win = window.open("file1_setting_opener.html"); + // A sandbox for the window + sb1 = new Cu.Sandbox(win, {wantXrays: true }) + sb1.win = win + // And a sandbox using the expanded principal. + sb2 = new Cu.Sandbox([win], {wantXrays: true }) + sb2.win = win + } + + function evalsb(str, sb) { + // Have to unwrap() to get objects we care about + return SpecialPowers.unwrap(Cu.evalInSandbox(str, sb)); + } + + function basicOpenerTest(win) { + is(win.opener, window, "Opening a window should give it the right opener"); + is(evalsb("win.opener", sb1), window, + "Reading opener in sandbox 1 should work"); + is(evalsb("win.opener", sb2), window, + "Reading opener in sandbox 2 should work"); + + win.opener = $("x").contentWindow; + evalsb("win.opener = win.opener.document.getElementById('y').contentWindow", sb1); + evalsb("win.opener = win.opener.document.getElementById('z').contentWindow", sb2); + + is(win.opener, $("x").contentWindow, "Should be able to set an opener to a different window"); + is(evalsb("win.opener", sb1), $("y").contentWindow, + "Should be able to set the opener to a different window in a sandbox one"); + is(evalsb("win.opener", sb2), $("z").contentWindow, + "Should be able to set the opener to a different window in a sandbox two"); + + win.location = "file2_setting_opener.html"; + } + + function continueOpenerTest(win) { + is(win.opener, window, "Navigating a window should have reset the opener we stashed on it temporarily"); + is(evalsb("win.opener", sb1), window, + "Navigating a window should have reset the opener in sb1"); + is(evalsb("win.opener", sb2), window, + "Navigating a window should have reset the opener in sb2"); + + win.opener = 5; + evalsb("win.opener = 5", sb1); + evalsb("win.opener = 5", sb2); + is(win.opener, 5, "Should be able to set an opener to a primitive"); + is(evalsb("win.opener", sb1), 5, + "Should be able to set the opener to a primitive in a sandbox one"); + is(evalsb("win.opener", sb2), 5, + "Should be able to set the opener to a primitive in a sandbox two"); + win.location = "file3_setting_opener.html"; + } + + function continueOpenerTest2(win) { + is(win.opener, window, + "Navigating a window again should have reset the opener we stashed on it temporarily"); + is(evalsb("win.opener", sb1), window, + "Navigating a window again should have reset the opener in sb1"); + is(evalsb("win.opener", sb2), window, + "Navigating a window again should have reset the opener in sb2"); + + win.opener = null; + is(win.opener, null, "Should be able to set the opener to null"); + is(evalsb("win.opener", sb1), null, + "Setting the opener to null should be visible in sb1"); + is(evalsb("win.opener", sb2), null, + "Setting the opener to null should be visible in sb2"); + + win.location = "file4_setting_opener.html"; + // Now poll for that load, since we have no way for the window to + // communicate with us now + setTimeout(checkForLoad, 0, win); + } + + function checkForLoad(win) { + if (!win.document.documentElement || + win.document.documentElement.innerText != "Loaded") { + setTimeout(checkForLoad, 0, win); + return; + } + + is(win.opener, null, "Null opener should persist across navigations"); + is(evalsb("win.opener", sb1), null, + "Null opener should persist across navigations in sb1"); + is(evalsb("win.opener", sb2), null, + "Null opener should persist across navigations in sb2"); + + win.close(); + SimpleTest.finish(); + } + + addLoadEvent(testOpenerSet); + </script> +</head> +<body> +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=868996">Mozilla Bug 868996</a> +<p id="display"></p> +<div id="content" style="display: none"> +<iframe id="x"></iframe> +<iframe id="y"></iframe> +<iframe id="z"></iframe> +</div> +<pre id="test"> +</pre> +</body> +</html> |