- From: Shao, Ting <notifications@github.com>
- Date: Tue, 21 Jan 2020 20:44:21 -0800
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 22 January 2020 04:44:23 UTC
tingshao commented on this pull request.
>
1. Wait for |task| to have executed or for |handleFetchFailed| to be true.
1. If |shouldSoftUpdate| is true, then [=in parallel=] run the [=Soft Update=] algorithm with |registration|.
- 1. If |respondWithEntered| is false, then return a [=network error=] if |eventCanceled| is true and null otherwise.
- 1. If |handleFetchFailed| is true, then return a [=network error=].
- 1. Return |response|.
+ 1. If |respondWithEntered| is false, then:
+ 1. If |eventCanceled| is true, then [=reject=] |eventHandled| with a "{{NetworkError}}" {{DOMException}} in |workerRealm| if |eventHandled| is not null and return a [=network error=].
+ 1. [=Resolve=] |eventHandled| if |eventHandled| is not null and return null.
+ 1. If |handleFetchFailed| is true, then [=reject=] |eventHandled| with a "{{NetworkError}}" {{DOMException}} in |workerRealm| if |eventHandled| is not null and return a [=network error=].
Done
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/pull/1496#discussion_r369367903
Received on Wednesday, 22 January 2020 04:44:23 UTC