mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 15:02:46 +00:00
23 lines
387 B
HTML
23 lines
387 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Service worker test</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
"use strict";
|
|
|
|
var sw = navigator.serviceWorker.register("fetch-sw.js", {scope: "fetch-sw/"});
|
|
sw.then(
|
|
function () {
|
|
dump("SW registered\n");
|
|
},
|
|
function (e) {
|
|
dump("SW not registered: " + e + "\n");
|
|
}
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|