-
Notifications
You must be signed in to change notification settings - Fork 439
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removes the nullable attribute from window.parent #1089
Conversation
Thanks for the PR! This section of the codebase is owned by @saschanaz - if they write a comment saying "LGTM" then it will be merged. |
This is the latest spec: https://html.spec.whatwg.org/multipage/browsers.html#dom-parent It has an example, which I modified to allow copy-pasting to console: var element = document.createElement("iframe");
document.body.append(element);
var iframeWindow = element.contentWindow;
element.remove();
console.log(iframeWindow.top === null);
console.log(iframeWindow.parent === null);
console.log(iframeWindow.frameElement === null); All returns true. But admittedly a rare situation, so your call. I guess at least it should be in the comment that it can be null? |
Yeah, thanks for digging! I'll add a comment saying it's possibly null - I think this is probably worth the ergonomics change |
Should it say why it's not nullable in the lib file? |
baselines/dom.generated.d.ts
Outdated
@@ -17230,7 +17230,8 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler | |||
readonly pageXOffset: number; | |||
/** @deprecated This is a legacy alias of `scrollY`. */ | |||
readonly pageYOffset: number; | |||
readonly parent: WindowProxy | null; | |||
/** Refers to either the parent WindowProxy, or itself. If you create a child context, then remove the parent you could get null though. */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about:
Refers to either the parent WindowProxy, or itself.
It can rarely be null e.g. for
contentWindow
of an iframe that is already removed from the parent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having it multiline doesn't really work because it's in two places with different indentations, so I made this a single line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think \n
automatically does the indentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
e.g. postMessage
Co-authored-by: Kagami Sascha Rosylight <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Merging because @saschanaz is a code-owner of all the changes - thanks! |
Re: microsoft/TypeScript#44684 (comment)
I read the spec, and it really didn't seem like null was possible - it is either the parent, or itself:
https://dev.w3.org/html5/spec-LC/browsers.html#dom-parent
Maybe this could be true in environments other than dom?