-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Remove canplay event from GlobalEventHandlers #16541
Remove canplay event from GlobalEventHandlers #16541
Conversation
api/Document.json
Outdated
@@ -1066,6 +1066,130 @@ | |||
} | |||
} | |||
}, | |||
"canplay_event": { |
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.
There's already a "canplay_event" entry for HTMLMediaElement
and that's the only one we should have, as the event doesn't bubble. Can you revert the other additions, and then compare the data being removed to that existing entry, noting any discrepancies?
This pull request has merge conflicts that must be resolved before it can be merged. |
1 similar comment
This pull request has merge conflicts that must be resolved before it can be merged. |
This pull request has merge conflicts that must be resolved before it can be merged. |
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.
The remaining "canplay_event" on HTMLMediaElement
looks good.
This PR demixes the
canplay
events from the GlobalEventHandlers mixin.