gecko-dev/dom/browser-element/mochitest/browserElement_OpenWindowRejected.js
Jagmeet Bhamber e15a06b5ac Bug 1508823 - Enable ESLint for dom/browser-element (manual changes). r=mccr8
Depends on D21215

Differential Revision: https://phabricator.services.mozilla.com/D14130

--HG--
extra : moz-landing-system : lando
2019-03-19 20:56:24 +00:00

46 lines
1.3 KiB
JavaScript

/* Any copyright is dedicated to the public domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Bug 742944 - Do window.open from inside <iframe mozbrowser>. But then
// reject the call. This shouldn't cause problems (crashes, leaks).
"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(e.detail.url.includes("does_not_exist.html"),
"Opened URL; got " + e.detail.url);
is(e.detail.name, "");
is(e.detail.features, "");
// Don't add e.detail.frameElement to the DOM, so the window.open is
// effectively blocked.
e.preventDefault();
});
iframe.addEventListener("mozbrowsershowmodalprompt", function(e) {
var msg = e.detail.message;
if (msg.indexOf("success:") == 0) {
ok(true, msg);
} else if (msg == "finish") {
SimpleTest.finish();
} else {
ok(false, msg);
}
});
iframe.src = "file_browserElement_OpenWindowRejected.html";
document.body.appendChild(iframe);
}
addEventListener("testready", runTest);