31 lines
918 B
JavaScript
31 lines
918 B
JavaScript
// ----------------------------------------------------------------------------
|
|
// Tests that calling InstallTrigger.installChrome works
|
|
function test() {
|
|
// This test depends on InstallTrigger.installChrome availability.
|
|
setInstallTriggerPrefs();
|
|
|
|
Harness.installEndedCallback = check_xpi_install;
|
|
Harness.installsCompletedCallback = finish_test;
|
|
Harness.setup();
|
|
|
|
PermissionTestUtils.add(
|
|
"http://example.com/",
|
|
"install",
|
|
Services.perms.ALLOW_ACTION
|
|
);
|
|
|
|
gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser);
|
|
BrowserTestUtils.startLoadingURIString(gBrowser, TESTROOT + "bug540558.html");
|
|
}
|
|
|
|
function check_xpi_install(install, addon) {
|
|
return addon.uninstall();
|
|
}
|
|
|
|
function finish_test(count) {
|
|
is(count, 1, "1 Add-on should have been successfully installed");
|
|
PermissionTestUtils.remove("http://example.com", "install");
|
|
|
|
gBrowser.removeCurrentTab();
|
|
Harness.finish();
|
|
}
|