blob: 33aec24a6dacc123df8d17becf25159005e8367d [file] [log] [blame]
<!doctype html><!-- webkit-test-runner [ useServiceWorkerShortTimeout=true ] -->
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/routines.js"></script>
</head>
<body>
<script>
promise_test(async (test) => {
const registration = await navigator.serviceWorker.register("service-worker-spinning-worker.js", { scope : "spin-fetch" });
const worker = registration.installing;
await waitForState(registration.installing, "activated");
withIframe("spin-fetch");
return waitForServiceWorkerNoLongerRunning(worker);
}, "Spin in fetch");
promise_test(async (test) => {
const registration = await navigator.serviceWorker.register("service-worker-spinning-worker.js", { scope : "spin-after-fetch" });
const worker = registration.installing;
await waitForState(registration.installing, "activated");
withIframe("spin-after-fetch");
return waitForServiceWorkerNoLongerRunning(worker);
}, "Spin after fetch");
</script>
</body>
</html>