summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/tests/Harness_sanity/test_sanityRegisteredServiceWorker2.html
blob: f46944c2e5809032b7e8f9868a701eba22be8184 (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 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>