blob: 25ad0329f9ec1e9cfe8f8bfde7abc5bbd7684b02 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Test periodicsync event in a serviceworker.</title>
<script>
function installSW() {
navigator.serviceWorker.register('periodicsync-event-worker.js');
}
window.__periodicsyncTagPromise = new Promise(fulfill =>
navigator.serviceWorker.onmessage = message => fulfill(message.data));
</script>
</head>
<body onload="installSW()"></body>
</html>