summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/fetch/hsts/register.html
blob: bcdc146aeca510b6bc273479725e4c863330a1bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<script>
  function ok(v, msg) {
    window.parent.postMessage({status: "ok", result: !!v, message: msg}, "*");
  }

  function done(reg) {
    ok(reg.active, "The active worker should be available.");
    window.parent.postMessage({status: "registrationdone"}, "*");
  }

  navigator.serviceWorker.ready.then(done);
  navigator.serviceWorker.register("hsts_test.js", {scope: "."});
</script>