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