blob: a091f3a707443576a50062c61ec66324e4e24469 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Service worker</title>
<script>
function installSW() {
navigator.serviceWorker.register('service-worker.js');
}
</script>
</head>
<body onload="installSW()">
<body>
Page with a service worker
</body>
</html>