blob: 45916cb2645b2bc7d2ba22526a36860d33fb2f45 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
// Demonstrates how the navigator.serviceWorker api can be used
const serviceWorker = navigator.serviceWorker;
serviceWorker.register().then(registration => {
console.log("success!");
}, err => {
console.error("Installing the worker failed!", err);
});
</script>
</head>
<body>
</body>
</html>