mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-01-23 06:16:35 +00:00
68 lines
2.4 KiB
JavaScript
68 lines
2.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
"use strict";
|
|
|
|
// Service workers can't be loaded from chrome://,
|
|
// but http:// is ok with dom.serviceWorkers.testing.enabled turned on.
|
|
const HTTP_ROOT = CHROME_ROOT.replace("chrome://mochitests/content/",
|
|
"http://mochi.test:8888/");
|
|
const SERVICE_WORKER = HTTP_ROOT + "service-workers/empty-sw.js";
|
|
const TAB_URL = HTTP_ROOT + "service-workers/empty-sw.html";
|
|
|
|
function waitForWorkersUpdate(document) {
|
|
return new Promise(done => {
|
|
var observer = new MutationObserver(function(mutations) {
|
|
observer.disconnect();
|
|
done();
|
|
});
|
|
var target = document.getElementById("service-workers");
|
|
observer.observe(target, { childList: true });
|
|
});
|
|
}
|
|
|
|
add_task(function *() {
|
|
yield new Promise(done => {
|
|
let options = {"set": [
|
|
["dom.serviceWorkers.enabled", true],
|
|
["dom.serviceWorkers.testing.enabled", true],
|
|
]};
|
|
SpecialPowers.pushPrefEnv(options, done);
|
|
});
|
|
|
|
let { tab, document } = yield openAboutDebugging("workers");
|
|
|
|
let swTab = yield addTab(TAB_URL);
|
|
|
|
yield waitForWorkersUpdate(document);
|
|
|
|
// Check that the service worker appears in the UI
|
|
let names = [...document.querySelectorAll("#service-workers .target-name")];
|
|
names = names.map(element => element.textContent);
|
|
ok(names.includes(SERVICE_WORKER), "The service worker url appears in the list: " + names);
|
|
|
|
// Use message manager to work with e10s
|
|
let frameScript = function () {
|
|
// Retrieve the `sw` promise created in the html page
|
|
let { sw } = content.wrappedJSObject;
|
|
sw.then(function (registration) {
|
|
registration.unregister().then(function (success) {
|
|
dump("SW unregistered: " + success + "\n");
|
|
},
|
|
function (e) {
|
|
dump("SW not unregistered; " + e + "\n");
|
|
});
|
|
});
|
|
};
|
|
swTab.linkedBrowser.messageManager.loadFrameScript("data:,(" + encodeURIComponent(frameScript) + ")()", true);
|
|
|
|
yield waitForWorkersUpdate(document);
|
|
|
|
// Check that the service worker disappeared from the UI
|
|
names = [...document.querySelectorAll("#service-workers .target-name")];
|
|
names = names.map(element => element.textContent);
|
|
ok(!names.includes(SERVICE_WORKER), "The service worker url is no longer in the list: " + names);
|
|
|
|
yield removeTab(swTab);
|
|
yield closeAboutDebugging(tab);
|
|
});
|