-
Notifications
You must be signed in to change notification settings - Fork 206
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
Update HTML parser changes in select explainer #1077
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,18 +62,16 @@ And here the same `<select>` with opt ins to the new stylability behavior which | |
|
||
## HTML parser changes | ||
|
||
The current behavior in the HTML parser for `<select>` is to remove all tags which aren't `<option>` or `<optgroup>`. We will change the HTML parser to allow `<datalist>` and `<button>` as a child of `<select>`, and allow any other content within that `<datalist>` or `<button>`. The `<button>` allows authors to replace the in-page button which opens the popup, and the `<datalist>` allows authors to replace the popup element containing the options. | ||
The current behavior in the HTML parser for `<select>` is to remove all tags which aren't `<option>` or `<optgroup>`. We will change the HTML parser to allow almost all tags as descendants of `<select>`. Adding `<button>` as a child of `<select>` allows authors to replace the in-page button which opens the popup, and all other tags are slotted into the popover element containing the options. | ||
|
||
Here is a basic example which uses the parser changes: | ||
```html | ||
<select style="appearance:base-select"> | ||
<button> | ||
<selectedoption></selectedoption> | ||
</button> | ||
<datalist> | ||
<option>one</option> | ||
<option>two</option> | ||
</datalist> | ||
<option><img src="..." alt="">one</option> | ||
<option><img src="..." alt="">two</option> | ||
</select> | ||
``` | ||
|
||
|
@@ -87,14 +85,11 @@ This example changes the fonts and colors of various parts of the button and lis | |
<div className="code-container"> | ||
```html | ||
<select> | ||
<datalist> | ||
<option>one</option> | ||
<option>two</option> | ||
</datalist> | ||
<option>one</option> | ||
<option>two</option> | ||
</select> | ||
<style> | ||
select datalist, | ||
select button { | ||
select, select::select-fallback-button { | ||
font-family: monospace; | ||
font-size: 12px; | ||
} | ||
|
@@ -117,20 +112,18 @@ This example adds "rich content" inside option elements in the form of country f | |
<div> | ||
```html | ||
<select> | ||
<datalist> | ||
<option> | ||
<img src="usa.jpg" alt="flag of USA"> | ||
USA | ||
</option> | ||
<option> | ||
<img src="germany.jpg" alt="flag of Germany"> | ||
Germany | ||
</option> | ||
<option> | ||
<img src="spain.jpg" alt="flag of Spain"> | ||
Spain | ||
</option> | ||
</datalist> | ||
<option> | ||
<img src="usa.jpg" alt="flag of USA"> | ||
USA | ||
</option> | ||
<option> | ||
<img src="germany.jpg" alt="flag of Germany"> | ||
Germany | ||
</option> | ||
<option> | ||
<img src="spain.jpg" alt="flag of Spain"> | ||
Spain | ||
</option> | ||
</select> | ||
``` | ||
</div> | ||
|
@@ -177,14 +170,12 @@ This example uses the customizable `<select>` element with custom CSS to target | |
<button> | ||
<selectedoption></selectedoption> | ||
</button> | ||
<datalist> | ||
<option> | ||
❤️ <span class=description>heart</span> | ||
</option> | ||
<option> | ||
🙂 <span class=description>smile</span> | ||
</option> | ||
</datalist> | ||
<option> | ||
❤️ <span class=description>heart</span> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i can't imagine the intent of these options is to have them announced as "red heart heart" or "slightly smiling face smile" if we're going to demonstrate emoji paired with text, we should probably mark the emoji as aria-hidden=true. might be worth having a note after this to indicate the why as well (to reduce awkward redundancy, to reduce the exposed / expected accName that someone would need to figure out if using some voice control software, etc.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, I wrapped them in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if you're pairing it with text, then it's common practice/expected that the visible text is what is announced. assuming that the emoji (aria-hidden) and the text are copied to the selectedoption - then that is in line with what i'd expect to happen. if there's somehow something special about the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I created a new PR to work on this example: #1079 |
||
</option> | ||
<option> | ||
🙂 <span class=description>smile</span> | ||
</option> | ||
</select> | ||
<style> | ||
selectedoption .description { | ||
|
@@ -203,40 +194,38 @@ selectedoption .description { | |
|
||
### Putting custom content in the listbox | ||
|
||
This example has a `<datalist>` which enables it to put arbitrary content into the listbox rather than just `<option>`s. | ||
This example has a complex structure wrapping the `<option>`s which is all slotted into the popover element. | ||
|
||
<div className="code-image-container"> | ||
<div> | ||
```html | ||
<select> | ||
<datalist> | ||
<div class=container> | ||
<div> | ||
<optgroup label="1-2"> | ||
<option>one</option> | ||
<option>two</option> | ||
</optgroup> | ||
</div> | ||
<div> | ||
<optgroup label="3-4"> | ||
<option>three</option> | ||
<option>four</option> | ||
</optgroup> | ||
</div> | ||
<div> | ||
<optgroup label="5-6"> | ||
<option>five</option> | ||
<option>six</option> | ||
</optgroup> | ||
</div> | ||
<div> | ||
<optgroup label="7-8"> | ||
<option>seven</option> | ||
<option>eight</option> | ||
</optgroup> | ||
</div> | ||
<div class=container> | ||
<div> | ||
<optgroup label="1-2"> | ||
<option>one</option> | ||
<option>two</option> | ||
</optgroup> | ||
</div> | ||
</datalist> | ||
<div> | ||
<optgroup label="3-4"> | ||
<option>three</option> | ||
<option>four</option> | ||
</optgroup> | ||
</div> | ||
<div> | ||
<optgroup label="5-6"> | ||
<option>five</option> | ||
<option>six</option> | ||
</optgroup> | ||
</div> | ||
<div> | ||
<optgroup label="7-8"> | ||
<option>seven</option> | ||
<option>eight</option> | ||
</optgroup> | ||
</div> | ||
</div> | ||
</select> | ||
<style> | ||
.container { | ||
|
@@ -286,11 +275,9 @@ Here is another example with custom content in the listbox: [codepen](https://co | |
<button><selectedoption id=myselectedoption></selectedoption></button> | ||
<select selectedoptionelement=myselectedoption> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i know everyone really wants to use this for split buttons, but we should come to consensus on what a good markup pattern would be for that, and if there are any additional accessibility considerations we should make before we actively promote it as an example. Or, in lieu of having a more robust pattern - we should explicitly note that this is merely a simplified version of only the start of what someone would need to do to create a split button, and this markup pattern is not a recommendation in and of itself. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cc @smhigley There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't like the idea of saying that this new attribute we're adding to the platform is so hard to use that we can't show you how to use it correctly. The text inside the selectedoption inside the button accurately describes what action the button will do when activated. What would be better? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. well, fortunately i'm not saying it's going to be too hard to use. but i am saying we haven't really discussed what we should promote as a markup pattern (or patterns) for this - so we should do that. for instance, it seems you're assuming i have a problem with the button the selectedoption is placed within - but that's not my concern. Rather, what is one to expect the select's accessible name should be per the pattern you wrote? Nothing? Down arrow? neither of those are particularly good answers. so how do we want to recommend people label the select? or should we consider ways to automatically name the select / associate it somehow with the selectedoption still? also, commonly component libraries have coded the 'more options' portion of the split button (the select) as a button that invokes a role=menu popup. My assumption with what we were doing here is simply giving people a way to more easily markup their custom split buttons, and then it would be on authors to finish the rest of the setup on their own. but am i wrong in assuming we were on the same page? is there appetite in implementing more of this for authors automatically - to the point that your simple markup pattern would do more by default, and thus would then be sufficient? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. another question. would the button part be necessary for this sort of pattern, or if one were to leave it out, would the existence of the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's been a while since I've looked at this, but I'm going to jump in since I've done some work on both splitbuttons and custom combos & their accessibility. I agree with @scottaohara, this pattern has a number of accessibility implications that are not addressed or handled explicitly. Splitbuttons have a history as a Windows native control that combines a primary action with a menu, but does not easily map to the web for reasons including the following:
Additionally, splitbuttons generally open a menu, not a listbox, and a I get the motivation behind making a splitbutton, but I think any effort to do so would be better served by being independent of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also stepping back a bit from the splitbutton question -- I think I might be misunderstanding this because I've been out of the loop, but is The idea of having an HTML mechanism to reflect the current value of a form control seems like quite a cool idea, would it make sense to have that mechanism be more general than just There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Splitbuttons are a use case we were trying to support, first by allowing multiple buttons to be slotted into the select, and now by having the It sounds like this case cannot be made accessible, so I will remove it from the explainer. This will also make it harder to ship the I will remove the split button and selectedoptionelement example from the explainer: #1080 |
||
<button>⬇️</button> | ||
<datalist> | ||
<option>Create a merge commit</option> | ||
<option>Squash and merge</option> | ||
<option>Rebase and merge</option> | ||
</datalist> | ||
<option>Create a merge commit</option> | ||
<option>Squash and merge</option> | ||
<option>Rebase and merge</option> | ||
</select> | ||
``` | ||
</div> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the
<datalist>
still allowed? If so, want to keep one example with it? Somewhere, not necessarily this one.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's still allowed, and supporting it imposes quite a lot of complexity. I think I'm going to have to work some more on justifying it.
So far I can think of 3 reasons:
<input>
creating a</select>
, then<datalist>
would be needed in order to support<input>
. Unfortunately<input>
is not part of the content model and something which we can make accessible yet, so this isn't a great argument.<datalist>
as capable as the element itself, we will probably have to do a bunch of work in CSS in order to make sure that all pseudo-elements can be used on it among other things.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm following up with adam to see if we can get a view transitions demo which I could put in the explainer, which would require and justify
<datalist>