mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-01 16:31:34 +00:00
26 lines
805 B
JavaScript
26 lines
805 B
JavaScript
// ----------------------------------------------------------------------------
|
|
// Tests that calling InstallTrigger.installChrome works
|
|
function test() {
|
|
Harness.installEndedCallback = install_ended;
|
|
Harness.installsCompletedCallback = finish_test;
|
|
Harness.setup();
|
|
|
|
var pm = Services.perms;
|
|
pm.add(makeURI("http://example.com/"), "install", pm.ALLOW_ACTION);
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
gBrowser.loadURI(TESTROOT + "installchrome.html? " + encodeURIComponent(TESTROOT + "unsigned.xpi"));
|
|
}
|
|
|
|
function install_ended(install, addon) {
|
|
install.cancel();
|
|
}
|
|
|
|
function finish_test(count) {
|
|
is(count, 1, "1 Add-on should have been successfully installed");
|
|
Services.perms.remove(makeURI("http://example.com"), "install");
|
|
|
|
gBrowser.removeCurrentTab();
|
|
Harness.finish();
|
|
}
|