diff --git a/source b/source index ed6c04e299e..d138f8c9b6a 100644 --- a/source +++ b/source @@ -78750,10 +78750,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's browsing context is + null, then return the empty string.

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

  4. +
+ +

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

+ +
    +
  1. If this Window object's browsing context is + null, then return.

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

  4. +

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