diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-06-26 16:09:08 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-06-26 16:09:08 -0400 |
commit | eda567b364a06e9e63efb865a6b1c73f1cb5232e (patch) | |
tree | 912ab15d877f733318e2c0394713bca33b830547 /toolkit/mozapps/webextensions/test/xpinstall/browser_bug638292.js | |
parent | 80eb356d57fc310cdf812cae63de30d6e56c1788 (diff) | |
download | UXP-eda567b364a06e9e63efb865a6b1c73f1cb5232e.tar UXP-eda567b364a06e9e63efb865a6b1c73f1cb5232e.tar.gz UXP-eda567b364a06e9e63efb865a6b1c73f1cb5232e.tar.lz UXP-eda567b364a06e9e63efb865a6b1c73f1cb5232e.tar.xz UXP-eda567b364a06e9e63efb865a6b1c73f1cb5232e.zip |
[AllAM] Remove Mozilla Tests
Diffstat (limited to 'toolkit/mozapps/webextensions/test/xpinstall/browser_bug638292.js')
-rw-r--r-- | toolkit/mozapps/webextensions/test/xpinstall/browser_bug638292.js | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/toolkit/mozapps/webextensions/test/xpinstall/browser_bug638292.js b/toolkit/mozapps/webextensions/test/xpinstall/browser_bug638292.js deleted file mode 100644 index 0d96e7cbe..000000000 --- a/toolkit/mozapps/webextensions/test/xpinstall/browser_bug638292.js +++ /dev/null @@ -1,40 +0,0 @@ -// ---------------------------------------------------------------------------- -// Test whether an InstallTrigger.enabled is working -add_task(function * () -{ - let testtab = yield BrowserTestUtils.openNewForegroundTab(gBrowser, TESTROOT + "bug638292.html"); - - function* verify(link, button) - { - info("Clicking " + link); - - let waitForNewTabPromise = BrowserTestUtils.waitForNewTab(gBrowser); - - yield BrowserTestUtils.synthesizeMouseAtCenter("#" + link, { button: button }, - gBrowser.selectedBrowser); - - let newtab = yield waitForNewTabPromise; - - yield BrowserTestUtils.browserLoaded(newtab.linkedBrowser); - - let result = yield ContentTask.spawn(newtab.linkedBrowser, { }, function* () { - return (content.document.getElementById("enabled").textContent == "true"); - }); - - ok(result, "installTrigger for " + link + " should have been enabled"); - - // Focus the old tab (link3 is opened in the background) - if (link != "link3") { - yield BrowserTestUtils.switchTab(gBrowser, testtab); - } - gBrowser.removeTab(newtab); - } - - yield* verify("link1", 0); - yield* verify("link2", 0); - yield* verify("link3", 1); - - gBrowser.removeCurrentTab(); -}); - - |