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