mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
2cfef0b277
--HG-- extra : rebase_source : 777580f0a22bfb3d9d447097b0f4a379f2b7416b
53 lines
1.8 KiB
JavaScript
53 lines
1.8 KiB
JavaScript
/* Any copyright is dedicated to the public domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Bug 777384 - Test mozapp permission.
|
|
"use strict";
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function makeAllAppsLaunchable() {
|
|
var Webapps = {};
|
|
SpecialPowers.wrap(Components).utils.import("resource://gre/modules/Webapps.jsm", Webapps);
|
|
var appRegistry = SpecialPowers.wrap(Webapps.DOMApplicationRegistry);
|
|
|
|
var originalValue = appRegistry.allAppsLaunchable;
|
|
appRegistry.allAppsLaunchable = true;
|
|
|
|
// Clean up after ourselves once tests are done so the test page is unloaded.
|
|
window.addEventListener("unload", function restoreAllAppsLaunchable(event) {
|
|
if (event.target == window.document) {
|
|
window.removeEventListener("unload", restoreAllAppsLaunchable, false);
|
|
appRegistry.allAppsLaunchable = originalValue;
|
|
}
|
|
}, false);
|
|
}
|
|
makeAllAppsLaunchable();
|
|
|
|
function testAppElement(expectAnApp, callback) {
|
|
var iframe = document.createElement('iframe');
|
|
iframe.mozbrowser = true;
|
|
iframe.setAttribute('mozapp', 'http://example.org/manifest.webapp');
|
|
iframe.addEventListener('mozbrowsershowmodalprompt', function(e) {
|
|
is(e.detail.message == 'app', expectAnApp, e.detail.message);
|
|
SimpleTest.executeSoon(callback);
|
|
});
|
|
document.body.appendChild(iframe);
|
|
iframe.src = 'http://example.org/tests/dom/browser-element/mochitest/file_browserElement_AppFramePermission.html';
|
|
}
|
|
|
|
function runTest() {
|
|
browserElementTestHelpers.setEnabledPref(true);
|
|
browserElementTestHelpers.addPermission();
|
|
|
|
SpecialPowers.addPermission("embed-apps", true, document);
|
|
testAppElement(true, function() {
|
|
SpecialPowers.removePermission("embed-apps", document);
|
|
testAppElement(false, function() {
|
|
SimpleTest.finish();
|
|
});
|
|
});
|
|
}
|
|
|
|
runTest();
|