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:
If this Window
object's browsing context is
+ null, then return the empty string.
Return this Window
object's browsing
+ context's name.
The name
attribute's setter, when invoked, must run these
+ steps:
If this Window
object's browsing context is
+ null, then return.
Set this Window
object's browsing context's
+ name to the given value.
The name gets reset when the browsing context is navigated to another origin.