summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/file_service_worker.html
blob: b8199469833cddcab4b5b81db63182f62a9c226b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 1208559 - ServiceWorker registration not governed by CSP</title>
</head>
<body>
<script>
  function finish(status) {
    window.parent.postMessage({result: status}, "*");
  }

  const promises = [
    navigator.serviceWorker.ready,
    navigator.serviceWorker.register("file_service_worker.js", { scope: "." })
  ];

  Promise.race(promises).then(finish.bind(null, 'allowed'),
                              finish.bind(null, 'blocked'));
  </script>
</body>
</html>