-
Notifications
You must be signed in to change notification settings - Fork 3k
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
hasEvent() dosn't detect "textInput" event #333
Comments
did it work in previous versions? event detection is hard. :( |
I have no idea. I just tried it today. Also document.implementation.hasFeature('Events.textInput', '') returns false even though the event is supported. |
|
From what I can see, "textInput" is one of those synthetic events which has no corresponding content attribute (so you can't just This is bad. Two (also bad) options I see are:
|
Looks like textinput is in flux. http://lists.w3.org/Archives/Public/www-dom/2010OctDec/0098.html Dunno how we can handle this. fwiw, the spec: http://www.w3.org/TR/DOM-Level-3-Events/#event-type-textinput |
Modernizr.hasEvent("textInput") returns false in the latest Chrome (14.0.835.8 dev) although this event is supported.
The text was updated successfully, but these errors were encountered: