diff --git a/source b/source index 774cc02f9dc..2392615cc9e 100644 --- a/source +++ b/source @@ -78751,10 +78751,27 @@ dictionary WindowPostMessageOptions : PostMessageOptions
-

The name attribute of the Window object - must, on getting, return the current name of the - browsing context; and, on setting, set the name of the browsing context to the new value.

+

The name attribute's getter, when invoked, must run + these steps:

+ +
    +
  1. If this Window object does not have an associated browsing + context, then return the empty string.

  2. + +
  3. Return this Window object's associated browsing context's name.

  4. +
+ +

The name attribute's setter, when invoked, must run these + steps:

+ +
    +
  1. If this Window object does not have an associated browsing + context, then return.

  2. + +
  3. Set this Window object's associated browsing context's name to the given value.

  4. +

The name gets reset when the browsing context is navigated to another origin.