diff --git a/docs/index.bs b/docs/index.bs index ee1e9f8c..a54d097a 100644 --- a/docs/index.bs +++ b/docs/index.bs @@ -814,8 +814,6 @@ spec: webappsec-referrer-policy; urlPrefix: https://w3c.github.io/webappsec-refe 1. Let |promise| be a new promise. 1. Run the following substeps in parallel: 1. Set [=/service worker=]'s skip waiting flag. - 1. If [=/service worker=]'s state is *installed*, then: - 1. Run Activate algorithm passing [=/service worker=]'s [=service worker/registration=] as the argument. 1. Resolve |promise| with undefined. 1. Return |promise|. @@ -2589,13 +2587,10 @@ spec: webappsec-referrer-policy; urlPrefix: https://w3c.github.io/webappsec-refe 1. Run the Update Registration State algorithm passing |registration|, "installing" and null as the arguments. 1. Run the Update Worker State algorithm passing |registration|'s waiting worker and *installed* as the arguments. 1. If |redundantWorker| is not null, run the Update Worker State algorithm passing |redundantWorker| and *redundant* as the arguments. - 1. If |registration|'s waiting worker's skip waiting flag is set, then: - 1. Run Activate algorithm passing |registration| as the argument. - 1. Invoke Finish Job with |job| and abort these steps. 1. Invoke Finish Job with |job|. 1. Wait for all the tasks queued by Update Worker State invoked in this algorithm have executed. 1. Wait until no [=/service worker client=] is using |registration| or |registration|'s waiting worker's skip waiting flag is set. - 1. If |registration|'s waiting worker |waitingWorker| is not null and |waitingWorker|'s skip waiting flag is not set, invoke Activate algorithm with |registration| as its argument. + 1. If |registration|'s waiting worker is not null, invoke Activate algorithm with |registration| as its argument.
diff --git a/docs/index.html b/docs/index.html index f9b5e90f..b0efff89 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2361,12 +2361,6 @@

Set service worker's skip waiting flag.

-
  • -

    If service worker's state is installed, then:

    -
      -
    1. -

      Run Activate algorithm passing service worker's registration as the argument.

      -
  • Resolve promise with undefined.

    @@ -2912,7 +2906,7 @@

    Let registration be the result of running Match Service Worker Registration algorithm passing client’s creation URL as the argument.

  • -

    If registration is not the service worker's containing service worker registration, continue to the next iteration of the loop.

    +

    If registration is not the service worker's containing service worker registration, continue to the next iteration of the loop.

  • If client’s active service worker is not the service worker, then:

      @@ -2945,9 +2939,9 @@

      An ExtendableEvent object has an associated extend lifetime promises (an array of promises). It is initially an empty array.

      An ExtendableEvent object has an associated extensions allowed flag. It is initially set.

      -

      Service workers have two lifecycle events, install and activate. Service workers use the ExtendableEvent interface for activate event and install event.

      +

      Service workers have two lifecycle events, install and activate. Service workers use the ExtendableEvent interface for activate event and install event.

      Service worker extensions that define event handlers may also use or extend the ExtendableEvent interface.

      -

      Note: To extend the lifetime of a service worker, algorithms that dispatch events using the ExtendableEvent interface run Extend Service Worker Lifetime algorithm after dispatching the event. See Handle Fetch, Handle Foreign Fetch, and Handle Functional Event.

      +

      Note: To extend the lifetime of a service worker, algorithms that dispatch events using the ExtendableEvent interface run Extend Service Worker Lifetime algorithm after dispatching the event. See Handle Fetch, Handle Foreign Fetch, and Handle Functional Event.

      4.4.1. event.waitUntil(f)

      waitUntil() method extends the lifetime of the event.

      @@ -2965,13 +2959,13 @@

      Add f to the extend lifetime promises.

  • -

    Service workers and extensions that define event handlers may define their own behaviors, allowing the extend lifetime promises to suggest operation length, and the rejected state of any of the promise in extend lifetime promises to suggest operation failure.

    -

    Service workers define the following behaviors for install event and activate event, respectively:

    +

    Service workers and extensions that define event handlers may define their own behaviors, allowing the extend lifetime promises to suggest operation length, and the rejected state of any of the promise in extend lifetime promises to suggest operation failure.

    +

    Service workers define the following behaviors for install event and activate event, respectively:

    @@ -3018,7 +3012,7 @@

    If options.scopes is empty throw a TypeError and abort these steps.

  • -

    Let scopeString be the context object’s relevant global object’s service worker's containing service worker registration’s scope url, serialized.

    +

    Let scopeString be the context object’s relevant global object’s service worker's containing service worker registration’s scope url, serialized.

  • Let subScopeURLs be an empty list of URLs.

  • @@ -3036,9 +3030,9 @@

    -

    Set this service worker's list of foreign fetch scopes to subScopeURLs.

    +

    Set this service worker's list of foreign fetch scopes to subScopeURLs.

  • -

    Set this service worker's list of foreign fetch origins to originURLs.

    +

    Set this service worker's list of foreign fetch origins to originURLs.

  • @@ -3063,7 +3057,7 @@

    boolean isReload = false; }; -

    Service workers have an essential functional event fetch. For fetch event, service workers use the FetchEvent interface which extends the ExtendableEvent interface.

    +

    Service workers have an essential functional event fetch. For fetch event, service workers use the FetchEvent interface which extends the ExtendableEvent interface.

    Each event using FetchEvent interface has an associated potential response (a response), initially set to null, and the following associated flags that are initially unset: