Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<title>Test that service worker registrations not cleaned up in mochitests cause failures</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
</head>
<body>
<script>
SimpleTest.waitForExplicitFinish();
SimpleTest.expectRegisteredServiceWorker();
SpecialPowers.pushPrefEnv({"set": [
["dom.serviceWorkers.exemptFromPerDomainMax", true],
["dom.serviceWorkers.enabled", true],
["dom.serviceWorkers.testing.enabled", true]
]}, function() {
navigator.serviceWorker.register("empty.js", {scope: "scope"})
.then(function(registration) {
ok(registration, "Registration succeeded");
SimpleTest.finish();
});
});
</script>
</body>
</html>