зеркало из https://github.com/mozilla/gecko-dev.git
64 строки
2.2 KiB
XML
64 строки
2.2 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
|
|
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
|
|
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="Mozilla Bug 771294">
|
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
|
|
<script type="application/javascript" src="head.js"/>
|
|
<!-- test results are displayed in the html:body -->
|
|
<body xmlns="http://www.w3.org/1999/xhtml">
|
|
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=771294"
|
|
target="_blank">Mozilla Bug 771294</a>
|
|
</body>
|
|
|
|
<script>
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
SpecialPowers.setAllAppsLaunchable(true);
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/PopupNotifications.jsm");
|
|
|
|
let blocked = true;
|
|
|
|
function blockedListener() {
|
|
blocked = false;
|
|
}
|
|
|
|
let panel = window.top.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
.getInterface(Ci.nsIWebNavigation)
|
|
.QueryInterface(Ci.nsIDocShell)
|
|
.chromeEventHandler.ownerDocument.defaultView
|
|
.PopupNotifications.panel;
|
|
|
|
panel.addEventListener("popupshowing", blockedListener, false);
|
|
|
|
Services.obs.addObserver(
|
|
function observeInstalling() {
|
|
Services.obs.removeObserver(observeInstalling, "webapps-ask-install");
|
|
// Spin the event loop before running the test to give the registry time
|
|
// to process the install request and (hopefully not) show the doorhanger.
|
|
setTimeout(function verify() {
|
|
ok(blocked, "Install panel was blocked after immediate redirect");
|
|
panel.removeEventListener("popupshowing", blockedListener);
|
|
SimpleTest.finish();
|
|
}, 0);
|
|
},
|
|
"webapps-ask-install",
|
|
false
|
|
);
|
|
|
|
</script>
|
|
|
|
<!-- Load a page that initiates an app installation and then immediately
|
|
- redirects to a page at a different origin. We can't do this directly
|
|
- inside this test page, because that would cause the test to hang. -->
|
|
<iframe src="http://test/chrome/dom/tests/mochitest/webapps/install_and_redirect_helper.xul"/>
|
|
|
|
</window>
|