We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
http://jsbin.com/bodelite/1/edit
After input value changed we receive 2 events CustomEvent and Event "change". Is this is an issue or it should behave like this?
The text was updated successfully, but these errors were encountered:
According to the Shadow DOM spec, the change event is supposed to stop at the root of the node tree.
change
core-input accounts for this by firing a CustomEvent for change: https://github.com/Polymer/core-input/blob/master/core-input.html#L331:L334
core-input
However, what I'm seeing from native SD is the the original change is actually bubbling up: http://jsbin.com/zimatace/1/edit. Is that expected?
Assigning to @sorvell for clarification.
Sorry, something went wrong.
Yes, this is a bug in native SD: https://code.google.com/p/chromium/issues/detail?id=398527&thanks=398527&ts=1406661473
here is full example:
http://jsbin.com/bodelite/4/edit
Good catch! Closing here since it's a native SD bug, looking to be fixed in the spec.
sorvell
No branches or pull requests
http://jsbin.com/bodelite/1/edit
After input value changed we receive 2 events CustomEvent and Event "change". Is this is an issue or it should behave like this?
The text was updated successfully, but these errors were encountered: