summaryrefslogtreecommitdiffstats
path: root/devtools/client/application/test/browser/resources/service-workers/dynamic-registration.html
blob: def300da6537a873490c9e980c7ab01f86dd1ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/ -->
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="UTF-8">
  <title>Service worker test</title>
</head>
<body>
<script type="text/javascript">
"use strict";

window.registerServiceWorker = function() {
  window.sw = navigator.serviceWorker.register("empty-sw.js");
};

</script>
</body>
</html>