Demix invalid event from GlobalEventHandlers#16657
Conversation
|
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. |
foolip
left a comment
There was a problem hiding this comment.
These are events for form controls, and are fired in 3 different places in the spec:
https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#statically-validate-the-constraints
https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#check-validity-steps
https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#report-validity-steps
I think we should have these events on the same 9 interfaces that have checkValidity() and reportValidity() methods. So far they're only on HTMLInputElement.
The additions made so far in this PR should be reverted.
|
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. |
|
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. |
This PR demixes the
invalidevent from the GlobalEventHandlers mixin.