-
Notifications
You must be signed in to change notification settings - Fork 433
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
Fix lib breaks #560
Fix lib breaks #560
Conversation
Though not part of the current spec, browsers do support the additonal property
@mhegazy Can we mark the deprecated argument of createTreeWalker as deprecated? Also |
@@ -9282,7 +9282,7 @@ interface Location { | |||
/** | |||
* Reloads the current page. | |||
*/ | |||
reload(): void; | |||
reload(forcedReload?: boolean): void; |
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.
Not browser"s" because its Firefox specific. https://bugzilla.mozilla.org/show_bug.cgi?id=1037721
Not in current Chromium: https://chromium.googlesource.com/chromium/blink/+/master/Source/core/frame/Location.idl
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.
We can change it to two overloads and mark it as deprecated.
sounds like a good idea. |
Fixes a set of issues that were identified by our real world code test suits.