-
Notifications
You must be signed in to change notification settings - Fork 30
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
selectstart
event handler needs to be exposed on Text
#159
Comments
We don't expose other event handlers on Text. Why is this event specially useful / needed? Author can always use |
What are the other events that can fire on I think the practical use in any specific situation is minimal, especially for a long-existing event, but the argument is one of consistency: |
Hm... I thought we fired |
Looking at webref data, on top of mutation events, the other events that fire on They don't have corresponding IDL attributes either. |
Thoughts:
|
Regarding "interoperable", I noticed that Chrome does not fire |
Per HTML spec pointercancel may fire on Text: And firing drag event on a text node is also specified: |
I believe
selectstart
can be emitted on aText
node, but there isn't a matching event handler on theText
interface (GlobalEventHandlers
only take care of exposing it on elements and their bubbling parents).(based on discussion with @tidoust and @foolip in w3c/webref#630 (comment) )
The text was updated successfully, but these errors were encountered: