blob: ef75945845e48ac5a1357efd21cb19d47fccc0e9 [file] [log] [blame]
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
if (document.location.hash === "#new-window") {
if (window.opener)
console.log("FAIL: window.opener is non-null");
else
console.log("PASS: window.opener is null");
testRunner.notifyDone();
} else {
window.name = "originalWindow";
document.getElementById("link").click();
}