diff --git a/docs/index.bs b/docs/index.bs index d07804e8..09899c1f 100644 --- a/docs/index.bs +++ b/docs/index.bs @@ -217,7 +217,7 @@ spec: webappsec-referrer-policy; urlPrefix: https://w3c.github.io/webappsec-refe

Lifetime

- A user agent *must* persistently keep a list of registered [=/service worker registrations=] unless otherwise they are explicitly unregistered. A user agent has a scope to registration map that stores the entries of the tuple of [=/service worker registration=]'s [=service worker registration/scope url=] and the corresponding [=/service worker registration=]. The lifetime of [=/service worker registrations=] is beyond that of the {{ServiceWorkerRegistration}} objects which represent them within the lifetime of their corresponding [=/service worker clients=]. + A user agent *must* persistently keep a list of registered [=/service worker registrations=] unless otherwise they are explicitly unregistered. A user agent has a scope to registration map that stores the entries of the tuple of [=/service worker registration=]'s [=service worker registration/scope url=], [=URL serializer|serialized=], and the corresponding [=/service worker registration=]. The lifetime of [=/service worker registrations=] is beyond that of the {{ServiceWorkerRegistration}} objects which represent them within the lifetime of their corresponding [=/service worker clients=].
@@ -2400,7 +2400,7 @@ spec: webappsec-referrer-policy; urlPrefix: https://w3c.github.io/webappsec-refe The following definitions are the user agent's internal data structures used throughout the specification. - A scope to registration map is an ordered map where the keys are [=service worker registration/scope urls=] and the values are [=/service worker registrations=]. + A scope to registration map is an ordered map where the keys are [=service worker registration/scope urls=], [=URL serializer|serialized=], and the values are [=/service worker registrations=]. A job is an abstraction of one of register, update, and unregister request for a [=/service worker registration=]. @@ -3341,15 +3341,15 @@ spec: webappsec-referrer-policy; urlPrefix: https://w3c.github.io/webappsec-refe 1. Run the following steps atomically. 1. Let |clientURLString| be serialized |clientURL|. - 1. Let |matchingScope| be the empty string. - 1. Let |allScopes| be the result of [=map/get the keys|getting the keys=] from scope to registration map. - 1. Set |matchingScope| to the longest value in |allScopes| which the value of |clientURLString| starts with, if it exists. + 1. Let |matchingScopeString| be the empty string. + 1. Let |scopeStringSet| be the result of [=map/get the keys|getting the keys=] from scope to registration map. + 1. Set |matchingScopeString| to the longest value in |scopeStringSet| which the value of |clientURLString| starts with, if it exists. Note: The URL string matching in this step is prefix-based rather than path-structural (e.g. a client URL string with "/prefix-of/resource.html" will match a registration for a scope with "/prefix"). - 1. Let |parsedMatchingScope| be null. - 1. If |matchingScope| is not the empty string, set |parsedMatchingScope| to the result of parsing |matchingScope|. - 1. Let |registration| be the result of running Get Registration algorithm passing |parsedMatchingScope| as the argument. + 1. Let |matchingScope| be null. + 1. If |matchingScopeString| is not the empty string, set |matchingScope| to the result of parsing |matchingScopeString|. + 1. Let |registration| be the result of running Get Registration algorithm passing |matchingScope| as the argument. 1. If |registration| is not null and |registration|'s uninstalling flag is set, return null. 1. Return |registration|. diff --git a/docs/index.html b/docs/index.html index ffbb4aab..619f7ab4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1177,7 +1177,7 @@ } } - +