Platform provided behaviors feedback 9#1293
Open
anaskim wants to merge 4 commits intoMicrosoftEdge:mainfrom
Open
Platform provided behaviors feedback 9#1293anaskim wants to merge 4 commits intoMicrosoftEdge:mainfrom
anaskim wants to merge 4 commits intoMicrosoftEdge:mainfrom
Conversation
dandclark
reviewed
Apr 2, 2026
| this._tooltipBehavior.content = 'Helpful tooltip text'; | ||
| ``` | ||
|
|
||
| #### Alternative 1: Class references |
Member
There was a problem hiding this comment.
Can we keep this but move it to the "Alternatives considered" section towards the end of the document?
| **Cons:** | ||
| - Requires developers to manage behavior instances themselves. | ||
| - More setup code compared to passing class references directly. | ||
| With the current approach, developers hold direct references to their behavior instances: no array lookup, `instanceof` checks, or `behaviors` interface is needed to access behavior state. It also aligns with the [W3C design principle that classes should have constructors](https://www.w3.org/TR/design-principles/#constructors) that allow authors to create and configure instances, and it extends naturally to future developer-defined behaviors that follow the same `new` + attach pattern. |
Member
There was a problem hiding this comment.
Suggested change
| With the current approach, developers hold direct references to their behavior instances: no array lookup, `instanceof` checks, or `behaviors` interface is needed to access behavior state. It also aligns with the [W3C design principle that classes should have constructors](https://www.w3.org/TR/design-principles/#constructors) that allow authors to create and configure instances, and it extends naturally to future developer-defined behaviors that follow the same `new` + attach pattern. | |
| Developers hold direct references to their behavior instances. This aligns with the [W3C design principle that classes should have constructors](https://www.w3.org/TR/design-principles/#constructors) that allow authors to create and configure instances, and it extends naturally to future developer-defined behaviors that follow the same `new` + attach pattern. |
Suggested rewording now that the "class references" alternative is no longer being directly compared to this approach.
| } | ||
| ``` | ||
|
|
||
| *Note: Automatic exposure would require adding behavior properties (e.g., `formAction`, `name`, `value`) to `HTMLElement`. This would bloat every `HTMLElement` instance's prototype with properties that only make sense for elements with specific behaviors. An opt-in alternative was considered but adds API complexity without a clear benefit.* |
Member
There was a problem hiding this comment.
I don't think we need to include this note here if we instead keep the Class References alternative section and move it to Considered Alternatives near the end of the doc per my other suggestion.
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.
Updates