name property

name property

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.

Definition:

@property
def name(self):
    ...
@name.setter
def name(self, value):
    ...

See Also