summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/service_worker_client.html
blob: c1c98eaabbdc2f4898ed9c3475e4ed4d03d9eb13 (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
26
27
28
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>controlled page</title>
<script class="testbody" type="text/javascript">
  if (!parent) {
      info("service_worker_client.html should not be launched directly!");
  }

  window.onload = function() {
    navigator.serviceWorker.onmessage = function(msg) {
      // Forward messages coming from the service worker to the test page.
      parent.postMessage(msg.data, "*");
    };
    navigator.serviceWorker.ready.then(function(swr) {
      parent.postMessage("READY", "*");
    });
  }
</script>

</head>
<body>
</body>
</html>