The overlay was responsible for script loading and defining three elements (bhTooltip, placesCommands, placesContext). In the majority of places where the overlay was included only part of it was used. To remove the overlay, the elements were each split into include files and moved into where they were used. For the scripts, a JS file was added that defines all the lazy modules and then this script, globalOverlay.js and utilityOverlay.js were inlined to everywhere that would have included them from the overlay. MozReview-Commit-ID: 8T5D46oYWLn
64 lines
2.0 KiB
JavaScript
64 lines
2.0 KiB
JavaScript
/**
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
let {ForgetAboutSite} = ChromeUtils.import("resource://gre/modules/ForgetAboutSite.jsm", {});
|
|
|
|
const domains = [
|
|
"mochi.test:8888",
|
|
"www.example.com"
|
|
];
|
|
|
|
const addPath = "/browser/dom/indexedDB/test/browser_forgetThisSiteAdd.html";
|
|
const getPath = "/browser/dom/indexedDB/test/browser_forgetThisSiteGet.html";
|
|
|
|
const testPageURL1 = "http://" + domains[0] + addPath;
|
|
const testPageURL2 = "http://" + domains[1] + addPath;
|
|
const testPageURL3 = "http://" + domains[0] + getPath;
|
|
const testPageURL4 = "http://" + domains[1] + getPath;
|
|
|
|
add_task(async function test1() {
|
|
requestLongerTimeout(2);
|
|
// Avoids the prompt
|
|
setPermission(testPageURL1, "indexedDB");
|
|
setPermission(testPageURL2, "indexedDB");
|
|
|
|
// Set database version for domain 1
|
|
gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser);
|
|
gBrowser.selectedBrowser.loadURI(testPageURL1);
|
|
await waitForMessage(11, gBrowser);
|
|
gBrowser.removeCurrentTab();
|
|
});
|
|
|
|
add_task(async function test2() {
|
|
// Set database version for domain 2
|
|
gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser);
|
|
gBrowser.selectedBrowser.loadURI(testPageURL2);
|
|
await waitForMessage(11, gBrowser);
|
|
gBrowser.removeCurrentTab();
|
|
});
|
|
|
|
add_task(async function test3() {
|
|
// Remove database from domain 2
|
|
ForgetAboutSite.removeDataFromDomain(domains[1]).then(() => {
|
|
setPermission(testPageURL4, "indexedDB");
|
|
});
|
|
});
|
|
|
|
add_task(async function test4() {
|
|
// Get database version for domain 1
|
|
gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser);
|
|
gBrowser.selectedBrowser.loadURI(testPageURL3);
|
|
await waitForMessage(11, gBrowser);
|
|
gBrowser.removeCurrentTab();
|
|
});
|
|
|
|
add_task(async function test5() {
|
|
// Get database version for domain 2
|
|
gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser);
|
|
gBrowser.selectedBrowser.loadURI(testPageURL4);
|
|
await waitForMessage(1, gBrowser);
|
|
gBrowser.removeCurrentTab();
|
|
});
|