summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/file_service_worker_container.html
blob: 625e911adc1cb7876133f945ddace8322d41cb8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <script>
      (async function () {
        await navigator.serviceWorker.register("file_service_worker.js");
        await navigator.serviceWorker.ready;
      })();
    </script>
  </head>
  <body>
    Service Worker Container
  </body>
</html>