mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-01-25 18:16:28 +00:00
21 lines
362 B
HTML
21 lines
362 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Service worker test</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
var sw = navigator.serviceWorker.register("empty-sw.js");
|
|
sw.then(
|
|
function (registration) {
|
|
dump("SW registered\n");
|
|
},
|
|
function (e) {
|
|
dump("SW not registered: " + e + "\n");
|
|
}
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|