diff --git a/index.html b/index.html index ddb7c0929..766dce582 100644 --- a/index.html +++ b/index.html @@ -2099,32 +2099,32 @@

for processing the scope member of a service worker passing unprocessed registration. -
  • If scope is not undefined, - set registration's scope +
  • If scope is undefined abort these steps and + return undefined. +
  • +
  • Otherwise, set registration's scope property to be scope.
  • Let type be the result of running the steps for processing the type member of a service worker passing unprocessed registration.
  • -
  • If type is not undefined - set registration's type - property to be type. -
  • If type is undefined abort these steps and return undefined.
  • +
  • Otherwise, set registration's type + property to be type. +
  • Let use cache be the result of running the steps for processing the use_cache member of a service worker passing unprocessed registration.
  • -
  • If use cache is not undefined, - set registration's use_cache - property to be use cache. -
  • If use cache is undefined abort these steps and return undefined.
  • +
  • Otherwise, set registration's use_cache + property to be use cache. +
  • Return registration.