mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
1.3 KiB
JavaScript
34 lines
1.3 KiB
JavaScript
// Load in the test harness
|
|
var scriptLoader = Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
|
|
.getService(Components.interfaces.mozIJSSubScriptLoader);
|
|
scriptLoader.loadSubScript("chrome://mochikit/content/browser/xpinstall/tests/harness.js", this);
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Test whether an InstallTrigger.install call fails when xpinstall is disabled
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
Services.prefs.setBoolPref("xpinstall.enabled", false);
|
|
|
|
var triggers = encodeURIComponent(JSON.stringify({
|
|
"Unsigned XPI": TESTROOT + "unsigned.xpi"
|
|
}));
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
gBrowser.selectedBrowser.addEventListener("load", function() {
|
|
gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true);
|
|
// Allow the in-page load handler to run first
|
|
executeSoon(page_loaded);
|
|
}, true);
|
|
gBrowser.loadURI(TESTROOT + "installtrigger.html?" + triggers);
|
|
}
|
|
|
|
function page_loaded() {
|
|
Services.prefs.clearUserPref("xpinstall.enabled");
|
|
|
|
var doc = gBrowser.contentDocument;
|
|
is(doc.getElementById("return").textContent, "false", "installTrigger should have not been enabled");
|
|
gBrowser.removeCurrentTab();
|
|
finish();
|
|
}
|
|
// ----------------------------------------------------------------------------
|