- From: Yoshisato Yanagisawa <notifications@github.com>
- Date: Tue, 13 Feb 2024 23:41:21 -0800
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 14 February 2024 07:41:28 UTC
@yoshisatoyanagisawa commented on this pull request. > + : Input + :: |serviceWorker|, a [=/service worker=] + :: |forceBypassCache|, an optional boolean, false by default + : Output + :: a [=Completion=] or *failure* + + Note: This algorithm blocks until the service worker is [=running=] or fails to start. + + 1. If |serviceWorker| is [=running=], then return |serviceWorker|'s [=start status=]. + 1. If |serviceWorker|'s [=service worker/state=] is "`redundant`", then return *failure*. + 1. Assert: |serviceWorker|'s [=start status=] is null. + 1. Let |script| be |serviceWorker|'s [=service worker/script resource=]. + 1. Assert: |script| is not null. + 1. Let |startFailed| be false. + 1. If |serviceWorker|'s [=ServiceWorkerGlobalScope is ready=] is not set: + 1. If run the [=Setup ServiceWorkerGlobalScope=] algorithm with |serviceWorker| returns false, then return *failure*. Good catch! I made the flag reset on terminate. I have implemented that in https://github.com/yoshisatoyanagisawa/ServiceWorker/pull/12 -- Reply to this email directly or view it on GitHub: https://github.com/w3c/ServiceWorker/pull/1701#discussion_r1489036807 You are receiving this because you are subscribed to this thread. Message ID: <w3c/ServiceWorker/pull/1701/review/1879571193@github.com>
Received on Wednesday, 14 February 2024 07:41:28 UTC