blob: 105fa6614e1f874552464627e1f6ad8f6bed8f51 (
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
25
|
<!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();
SpecialPowers.pushPrefEnv({"set": [
["dom.serviceWorkers.exemptFromPerDomainMax", true],
["dom.serviceWorkers.enabled", true],
["dom.serviceWorkers.testing.enabled", true]
]}, function() {
navigator.serviceWorker.getRegistration("scope")
.then(function(registration) {
ok(registration, "Registration successfully obtained");
return registration.unregister();
}).then(function() {
SimpleTest.finish();
});
});
</script>
</body>
</html>
|