blob: b7aaed23271a7546bb7f716fb0bd0b25ee6db5e6 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Service worker for a push message test</title>
<script>
function installSW() {
navigator.serviceWorker.register('push-message-service-worker.js');
}
window.__messagePromise = new Promise(fulfill =>
navigator.serviceWorker.onmessage = e => fulfill(e.data));
</script>
</head>
<body onload="installSW()"></body>
</html>