blob: 6c8fc352480144331d6ec0783a0abbea1b1c1075 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<title>Test that service worker registrations not cleaned up in mochitests cause failures</title>
<script type="text/javascript" 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>
|