-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Demix wheel event from GlobalEventHandlers #16762
Demix wheel event from GlobalEventHandlers #16762
Conversation
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. |
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.
Let's keep only the entry on Element
, that's the target per https://w3c.github.io/uievents/#event-type-wheel and the event bubbles.
These differences in the data need to be investigated:
- Chrome 31 or 61?
- Supported on Safari iOS or not?
This pull request has merge conflicts that must be resolved before it can be merged. |
The question of Chrome 31 or 61 still needs addressing here. |
I just ran the collector and it looks like this is a more complicated issue than originally anticipated. As reported by the collector, on We should probably keep the event on |
@queengooborg did you use http://mdn-bcd-collector.appspot.com/tests/api/HTMLElement/wheel_event? There's no test for |
Using http://software.hixie.ch/utilities/js/live-dom-viewer/?saved=10459 to test the version before/after I've confirmed:
|
I don't think so, or can you create a test case where the target is a |
This PR demixes the
wheel
event from the GlobalEventHandlers mixin.