зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
622 B
HTML
25 строки
622 B
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test worker::update</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
|
|
navigator.serviceWorker.onmessage = function(e) { parent.postMessage(e.data, "*"); }
|
|
navigator.serviceWorker.ready.then(function() {
|
|
navigator.serviceWorker.controller.postMessage("GO");
|
|
});
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|