diff --git a/source b/source index d7ca5b74789..538ac58744f 100644 --- a/source +++ b/source @@ -2840,7 +2840,6 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d
  • priority
  • origin
  • omit-Origin-header flag
  • -
  • same-origin data-URL flag
  • referrer
  • synchronous flag
  • mode
  • @@ -26172,8 +26171,6 @@ was an English <a href="/wiki/Music_hall">music hall</a> singer, ... picture, set request's initiator to "imageset".

    -

    ⌛ Set request's same-origin data-URL flag.

    -

    ⌛ Set request's referrer policy to the current state of the element's referrerpolicy attribute.

    @@ -27037,8 +27034,6 @@ was an English <a href="/wiki/Music_hall">music hall</a> singer, ... data-x="">imageset", and set request's synchronous flag.

    -
  • Set request's same-origin data-URL flag.

  • -
  • Set request's referrer policy to the current state of the element's referrerpolicy attribute.

  • @@ -96554,7 +96549,9 @@ interface SharedWorkerGlobalScope : WorkerGlobalScope {

    A SharedWorkerGlobalScope object has an associated constructor url and constructor origin, constructor url, and name. They are initialized when the SharedWorkerGlobalScope object is created, in the run a worker @@ -96767,6 +96764,11 @@ interface SharedWorkerGlobalScope : WorkerGlobalScope {

    If is shared is true, then:

      +
    1. Set worker global scope's constructor origin to + outside settings's origin.

    2. +
    3. Set worker global scope's constructor url to url.

    4. @@ -97147,7 +97149,7 @@ interface AbstractWorker {
      The API URL character encoding
      -

      Return UTF-8.

      +

      Return UTF-8.

      @@ -97162,7 +97164,10 @@ interface AbstractWorker {
      The origin
      -

      Return inherited origin.

      +

      Return a unique opaque origin if worker + global scope's url's scheme is "data", and inherited + origin otherwise.

      @@ -97303,8 +97308,10 @@ enum WorkerType { "classic", "module" };
    5. Let worker URL be the resulting URL record.

      -

      Any same-origin URL will do, including blob: URLs.

      +

      Any same-origin URL (including blob: URLs) can be used. data: + URLs can also be used, but they create a worker with an opaque origin.

    6. Let worker be a new Worker object.

    7. @@ -97378,8 +97385,10 @@ interface SharedWorker : EventTarget {
    8. Otherwise, let urlRecord be the resulting URL record.

      -

      Any same-origin URL will do, including blob: URLs.

      +

      Any same-origin URL (including blob: URLs) can be used. data: + URLs can also be used, but they create a worker with an opaque origin.

    9. Let worker be a new SharedWorker object.

    10. @@ -97400,15 +97409,25 @@ interface SharedWorker : EventTarget {
      1. Let worker global scope be null.

      2. -
      3. If there exists a SharedWorkerGlobalScope object whose closing flag is false, whose name is exactly equal to name, - whose constructor url - equals urlRecord, and whose relevant - settings object's origin is - same origin with outside settings's origin, then set worker global scope - to that SharedWorkerGlobalScope object.

      4. +
      5. +

        If there exists a SharedWorkerGlobalScope object whose closing flag is false, constructor origin is + same origin with outside settings's origin, constructor url equals urlRecord, and name is name, then set + worker global scope to that SharedWorkerGlobalScope object.

        + +

        data: URLs create a worker with an opaque origin. Both the constructor origin and + constructor url are + compared so the same data: URL can be used within an + origin to get to the same SharedWorkerGlobalScope object, but cannot + be used to bypass the same origin restriction.

        +
      6. If worker global scope is not null, but the user agent has been