mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
4ca15feade
Also set network.disable.ipc.security to true and leave it that way. This prevents security errors in the tests which happen when we pop the pref. --HG-- extra : rebase_source : 95f7ca7c3b71cdc0e3e6fd1cfb663a5653f3ab6f
34 lines
1000 B
JavaScript
34 lines
1000 B
JavaScript
/* Any copyright is dedicated to the public domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Bug 764718 - Test that window.close() works from the opener window.
|
|
"use strict";
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
browserElementTestHelpers.setEnabledPref(true);
|
|
browserElementTestHelpers.addPermission();
|
|
|
|
function runTest() {
|
|
var iframe = document.createElement('iframe');
|
|
SpecialPowers.wrap(iframe).mozbrowser = true;
|
|
|
|
iframe.addEventListener('mozbrowseropenwindow', function(e) {
|
|
ok(true, "got openwindow event.");
|
|
document.body.appendChild(e.detail.frameElement);
|
|
|
|
e.detail.frameElement.addEventListener("mozbrowserclose", function(e) {
|
|
ok(true, "got mozbrowserclose event.");
|
|
SimpleTest.finish();
|
|
});
|
|
});
|
|
|
|
|
|
document.body.appendChild(iframe);
|
|
|
|
// file_browserElement_CloseFromOpener opens a new window and then calls
|
|
// close() on it.
|
|
iframe.src = "file_browserElement_CloseFromOpener.html";
|
|
}
|
|
|
|
addEventListener('testready', runTest);
|