зеркало из https://github.com/mozilla/gecko-dev.git
49 строки
1.4 KiB
JavaScript
49 строки
1.4 KiB
JavaScript
/* Any copyright is dedicated to the public domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Bug 769182 - window.open to a different origin should load the page.
|
|
|
|
"use strict";
|
|
|
|
/* global browserElementTestHelpers */
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
browserElementTestHelpers.setEnabledPref(true);
|
|
browserElementTestHelpers.addPermission();
|
|
|
|
function runTest() {
|
|
var iframe = document.createElement("iframe");
|
|
iframe.setAttribute("mozbrowser", "true");
|
|
|
|
iframe.addEventListener("mozbrowseropenwindow", function(e) {
|
|
ok(true, "Got first window.open call");
|
|
|
|
e.detail.frameElement.addEventListener("mozbrowseropenwindow", function(f) {
|
|
ok(true, "Got second window.open call");
|
|
document.body.appendChild(f.detail.frameElement);
|
|
});
|
|
|
|
e.detail.frameElement.addEventListener(
|
|
"mozbrowsershowmodalprompt",
|
|
function(f) {
|
|
ok(true, "Got alert from second window.");
|
|
SimpleTest.finish();
|
|
}
|
|
);
|
|
|
|
document.body.appendChild(e.detail.frameElement);
|
|
});
|
|
|
|
// DifferentOrigin.html?1 calls
|
|
//
|
|
// window.open('http://example.com/.../DifferentOrigin.html?2'),
|
|
//
|
|
// which calls alert().
|
|
|
|
iframe.src =
|
|
"http://example.org/tests/dom/browser-element/mochitest/file_browserElement_OpenWindowDifferentOrigin.html?1";
|
|
document.body.appendChild(iframe);
|
|
}
|
|
|
|
addEventListener("testready", runTest);
|