Disambiguate when to add global event handlers#612
Open
domfarolino wants to merge 2 commits intow3ctag:mainfrom
Open
Disambiguate when to add global event handlers#612domfarolino wants to merge 2 commits intow3ctag:mainfrom
domfarolino wants to merge 2 commits intow3ctag:mainfrom
Conversation
Author
|
@zcorpan @annevk Can you confirm that this is right? In particular, #611 (comment). |
jyasskin
approved these changes
Feb 10, 2026
jyasskin
reviewed
Feb 10, 2026
Co-authored-by: Jeffrey Yasskin <jyasskin@gmail.com>
Author
Member
|
Element-specific seems almost never justified (due to bubbling), but I don't know how many events SVG and MathML define and whether we want to have those on the global list. |
Contributor
|
I think @bkardell said none for MathML. I’m unsure about svg. Maybe we should take out mentions of those. |
Contributor
|
Checked SVG’s IDL. It depends fully on html. https://www.w3.org/TR/SVG2/idl.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #611. I think when new events are introduced with the intention of being fired at HTML or SVG elements, as opposed to just generic non-DOM-associated EventTargets, the guidance is to add them to the
GlobalEventHandlersmixin.As #611 notes, this is the advice I received by Domenic in WICG/fenced-frame#144 (comment), and I think there is slightly ambiguous wording in the design principles that may mistakenly lead people away from this advice when designing new APIs that introduce new events aimed at HTML elements. See #611 (comment).
Preview | Diff