mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 05:43:08 +09:00
28 lines
863 B
JavaScript
28 lines
863 B
JavaScript
// ----------------------------------------------------------------------------
|
|
// Tests installing an unsigned add-on through a navigation. Should not be
|
|
// blocked since the referer is whitelisted.
|
|
var url = TESTROOT2 + "navigate.html?" + encodeURIComponent(TESTROOT + "amosigned.xpi");
|
|
|
|
function test() {
|
|
Harness.installConfirmCallback = confirm_install;
|
|
Harness.installsCompletedCallback = finish_test;
|
|
Harness.setup();
|
|
|
|
var pm = Services.perms;
|
|
pm.add(makeURI("http://example.org/"), "install", pm.ALLOW_ACTION);
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
gBrowser.loadURI(url);
|
|
}
|
|
|
|
function confirm_install(window) {
|
|
return false;
|
|
}
|
|
|
|
function finish_test(count) {
|
|
is(count, 0, "No add-ons should have been installed");
|
|
Services.perms.remove(makeURI("http://example.org"), "install");
|
|
|
|
gBrowser.removeCurrentTab();
|
|
Harness.finish();
|
|
}
|