Skip to content
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

Add commandfor & command attributes to HTMLButtonElement #9841

Merged
merged 106 commits into from
Feb 19, 2025

Conversation

keithamus
Copy link
Contributor

@keithamus keithamus commented Oct 8, 2023

This adds the commandfor & command attributes and a "command" event using the CommandEvent interface.

Button activation checks if the button has a "commandfor" target and if so performs invoker command behaviour depending on command and the target element.

Some related (eventual) follow up issues around this feature:

(See WHATWG Working Mode: Changes for more details.)


/dom.html ( diff )
/form-elements.html ( diff )
/index.html ( diff )
/indices.html ( diff )
/interaction.html ( diff )
/interactive-elements.html ( diff )
/webappapis.html ( diff )

@keithamus keithamus changed the title Add invoke Add InvokeElement & InvokeEvent IDLs for Invoke proposal Oct 9, 2023
@keithamus keithamus changed the title Add InvokeElement & InvokeEvent IDLs for Invoke proposal Add InvokeElement & InvokeEvent IDLs & invocation steps for Invoke proposal Oct 9, 2023
@keithamus keithamus marked this pull request as ready for review October 10, 2023 22:28
@keithamus keithamus force-pushed the add-invoke branch 3 times, most recently from 45e4032 to 9579336 Compare October 17, 2023 20:32
@scottaohara
Copy link
Collaborator

scottaohara commented Oct 18, 2023

I realize this is also in the steps for getting the popover target element, but in both cases I'm wondering why its specified to return null if the node is in the disable state?

Doing so, at least with <button popovertarget=foo disabled> testing in chrome, results in that element not exposing whether the popover is in the expanded or collapsed state - as I'm assuming due to

"If node is disabled, then return null."

that state gets removed. That's unexpected, to have that state removed based on whether the button is disabled or not. And for invokertarget - if it is really is going to do more than just show/hide content - there are a lot of other states that should still be exposed, regarless of if the element is in the disabled state or not.

edit: I can file a bug for disabled / popovertarget if necessary - i just wanted to get insight on this first, before I went and made that issue. cc @mfreed7

@keithamus

This comment was marked as outdated.

@keithamus keithamus force-pushed the add-invoke branch 2 times, most recently from 7f0f9ea to 834a8b1 Compare October 18, 2023 21:36
keithamus added a commit to keithamus/wpt that referenced this pull request Oct 20, 2023
@lukewarlow
Copy link
Member

Fwiw HTML requires a positive standards position or for chrome LGTMs on an intent to ship to be considered supportive.

Saying that Mozilla have marked their position as positive so that's 1 implementor interested.

I do wonder how this requirement works for a feature such as this which will require multiple PRs to add to the spec?

@domenic
Copy link
Member

domenic commented Nov 5, 2023

a feature such as this which will require multiple PRs to add to the spec?

I'm confused why this feature is being done as multiple PRs; it makes review a good deal harder.

@keithamus
Copy link
Contributor Author

If it makes it easier to review I’m happy to put more into one PR. I figured it would be worthwhile splitting it into the core vs each elements behaviour as I imagine there will be more to discuss with each elements behaviour.

@domenic
Copy link
Member

domenic commented Nov 5, 2023

Well, it'd make it easier for me, but I haven't signed up to review yet, so no need to make any changes until we get some more opinions :)

Edited to add: the reason it makes it more difficult is that I don't think we want to accept the feature piecemeal.

@lukewarlow
Copy link
Member

As per openui/open-ui#900 (comment) this'll need updating to only fire the event when the action is custom (has a hypen) or is recognised and valid (correct action name on correct element).

TLDR is that this will allow us to add default actions in future without conflicting with user land code.

@lukewarlow
Copy link
Member

In openui/open-ui#952 (comment) we resolved that "Invokers v1 will be popover and dialog invoking."

This should help keep this initial PR as small as possible while also avoid the issue of reviewing stuff piecemeal.

So #9875 can be merged into this along with dialog related changes.

@mfreed7
Copy link
Contributor

mfreed7 commented Jan 17, 2024

Fwiw HTML requires a positive standards position or for chrome LGTMs on an intent to ship to be considered supportive.

Saying that Mozilla have marked their position as positive so that's 1 implementor interested.

Chromium is explicitly supportive of this proposal, so I believe it has two implementer support (including Mozilla).

Is this PR in a state that it can get a review? I'm happy to do so, if it'd help.

@keithamus
Copy link
Contributor Author

I'd be happy to get reviews, I think this is in a good position for that.

@mfreed7
Copy link
Contributor

mfreed7 commented Jan 17, 2024

I'd be happy to get reviews, I think this is in a good position for that.

Done - I added a first set of comments.

@annevk annevk removed do not merge yet Pull request must not be merged per rationale in comment needs tests Moving the issue forward requires someone to write tests labels Feb 18, 2025
Copy link
Member

@annevk annevk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this now has everything I asked for. Thank you! I think we need at least one more editor review given the many iterations. @zcorpan expressed interest and it seems @foolip is reviewing as well.

Copy link
Member

@foolip foolip left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've gone over it all once more and spotted just a few editorial things. Thank you for your patience @keithamus!

@keithamus
Copy link
Contributor Author

@foolip thanks for the new review! All comments addressed.

Copy link
Member

@foolip foolip left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @keithamus, I think we're good to go here. I left two final (really!) suggestions that I hope can be applied without any knock-on effects.

@keithamus
Copy link
Contributor Author

@foolip thanks! Addressed both of those comments.

@foolip
Copy link
Member

foolip commented Feb 19, 2025

Checklist up top looks good, merging this and web-platform-tests/wpt#42664 😄

@foolip foolip merged commit 81fa58f into whatwg:main Feb 19, 2025
2 checks passed
foolip pushed a commit to web-platform-tests/wpt that referenced this pull request Feb 19, 2025
AtkinsSJ added a commit to AtkinsSJ/ladybird that referenced this pull request Feb 20, 2025
Corresponds to part of whatwg/html#9841 and then
whatwg/html#11047

Adding `Auto` as a type state feels a little odd, as it's not an actual
type allowed in HTML. However, it's the default state when the value is
missing or invalid, which works out the same, as long as we never
serialize "auto", which we don't.
AtkinsSJ added a commit to AtkinsSJ/ladybird that referenced this pull request Feb 21, 2025
Corresponds to part of whatwg/html#9841 and then
whatwg/html#11047

Adding `Auto` as a type state feels a little odd, as it's not an actual
type allowed in HTML. However, it's the default state when the value is
missing or invalid, which works out the same, as long as we never
serialize "auto", which we don't.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
addition/proposal New features or enhancements
Development

Successfully merging this pull request may close these issues.