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/extensions/test/xpinstall/browser_localfile2.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/extensions/test/xpinstall/browser_localfile2.js')
-rw-r--r-- | toolkit/mozapps/extensions/test/xpinstall/browser_localfile2.js | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/toolkit/mozapps/extensions/test/xpinstall/browser_localfile2.js b/toolkit/mozapps/extensions/test/xpinstall/browser_localfile2.js deleted file mode 100644 index 253ed15b9..000000000 --- a/toolkit/mozapps/extensions/test/xpinstall/browser_localfile2.js +++ /dev/null @@ -1,49 +0,0 @@ -// ---------------------------------------------------------------------------- -// Test whether an install fails if the url is a local file when requested from -// web content -function test() { - waitForExplicitFinish(); - - var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"] - .getService(Components.interfaces.nsIChromeRegistry); - - var chromeroot = getChromeRoot(gTestPath); - try { - var xpipath = cr.convertChromeURL(makeURI(chromeroot + "unsigned.xpi")).spec; - } catch (ex) { - var xpipath = chromeroot + "unsigned.xpi"; //scenario where we are running from a .jar and already extracted - } - - var triggers = encodeURIComponent(JSON.stringify({ - "Unsigned XPI": xpipath - })); - gBrowser.selectedTab = gBrowser.addTab(); - - function loadListener() { - gBrowser.selectedBrowser.removeEventListener("load", loadListener, true); - gBrowser.contentWindow.addEventListener("InstallTriggered", page_loaded, false); - } - - gBrowser.selectedBrowser.addEventListener("load", loadListener, true); - - // In non-e10s the exception in the content page would trigger a test failure - if (!gMultiProcessBrowser) - expectUncaughtException(); - - gBrowser.loadURI(TESTROOT + "installtrigger.html?" + triggers); -} - -function page_loaded() { - gBrowser.contentWindow.removeEventListener("InstallTriggered", page_loaded, false); - var doc = gBrowser.contentDocument; - is(doc.getElementById("return").textContent, "exception", "installTrigger should have failed"); - - // In non-e10s the exception from the page is thrown after the event so we - // have to spin the event loop to make sure it arrives so expectUncaughtException - // sees it. - executeSoon(() => { - gBrowser.removeCurrentTab(); - finish(); - }); -} -// ---------------------------------------------------------------------------- |