-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Content model and 'what' to render for stylable <select>
elements
#10317
Comments
To be clear, #10310 was to discuss a specific subset of #9799. What ends up getting rendered is really a function of the I think an accessible |
This needs refinement after accessibility semantics/constraints are figured out: whatwg#10317
This needs refinement after accessibility semantics/constraints are figured out: whatwg#10317
This needs refinement after accessibility semantics/constraints are figured out: whatwg#10317
This needs refinement after accessibility semantics/constraints are figured out: whatwg#10317
My draft spec has a proposed updated content model here: #10548 The gist of the changes:
Decorative images:
|
Why would we only allow decorative images? I think we should make |
This needs refinement after accessibility semantics/constraints are figured out: whatwg#10317
we had discussed images with alternative text being allowed. i think that might just be a miss. We had talked about how it could be problematic if people used images without alternative text or visible text in the option - and how that'd be an issue. but i know there was also discussion about needing to potentially address your previous comment.
with your latest comment, are you implying it might be ok if image has alternative text, then such platforms could render the alt text instead of the image? if so that'd be great. i was worried that if a platform decided not to render the image, that the whole image, including alt text, would be dropped. |
Relatedly, I think having authoring conformance requirements depend on ARIA seems a bit sketchy? ARIA is supposed to be used as a means of interfacing with AT, and not affect semantics or document conformance. |
@scottaohara right, it's called "replacement text" for a reason. I don't see why we couldn't use that. |
@annevk excellent, seems we're on the same page then. again, i think that's a mistake in relaying what had been discussed. an option should absolutely be able to contain non-decorative images. The only requirement with graphics being that if they are the only content of an option, they must have alternative text. the mention of decorative images was supposed to be in regard to if the graphic was a direct child of a select element (used outside of an option), not if it was a child of an option. cc @josepharhar @domenic that's fair, and if not for the fact that |
Thanks for the discussion! So it sounds like I should keep the content model the way it is but also remove the requirement of having alt='' or aria-hidden=true, and then add another requirement for this:
Anything I'm missing? If not then I can go update the content model in the draft spec. |
I don't think we need a specific requirement for this. There are many elements in the spec which don't make very much sense if they're empty (e.g., only whitespace, or only a non-alt image, or only |
For the |
We have "palpable content", but it might not be correct for Right now https://html.spec.whatwg.org/#the-option-element has
I think the intent is to catch the mistake where the contents of Should alt text be included in the submitted value? That would be a normative change, but maybe it's not a web compat problem (since you can't easily use images in |
I feel like the only case where making alt text the submitted value make sense is if there is no other text in the option element and the option element also doesn't have the value attribute. Wouldn't it make more sense to put a value attribute on the option as well?
This sounds in favor of including the "if they are the only content of an option, they must have alternative text" requirement. Do you think we should have that requirement? |
i don't see the downside of calling this out. Even if just briefly and cross linking over to https://html.spec.whatwg.org/multipage/images.html#alt for the more detailed requirements for when an |
It seems cumbersome if you would otherwise not have to do that. Since we already have a custom iterator to determine the text content we might as well handle Additionally, we have environments where we need to display the pure text version and that pure text version should be roughly the same as what AT sees I think and not necessarily reflect the submitted value (which can be nonsensical as far as an end user is concerned). |
It sounds like you're in favor of including alt text in the submitted value. Is that correct?
So it sounds like if the image it outside of the option it must not have alt text, and if its inside the image it must have alt text. I'm going to add this to the spec.
For svgs, can we just make aria-hidden get applied automatically as part of the accessibility mappings when needed? Also, how is alt text supposed to be put on svgs in order to follow the requirement that it must have alt text when used inside an option element? |
This needs refinement after accessibility semantics/constraints are figured out: whatwg#10317
just talked with @josepharhar about this, and per the feedback in this thread we are instead thinking to drop the explicit mention of decorative images from the content model entirely. Rather, author guidance can be provided in examples and notes, referencing back to existing spec content about the The only way I could still see graphics being mentioned in the content model, is in regard to needing a value to submit - so that an option like |
This PR updated the content model for the <select>, <option>, and <optgroup> elements in support of customizable <select>. Fixes whatwg#10317
This PR updated the content model for the <select>, <option>, and <optgroup> elements in support of customizable <select>. Fixes whatwg#10317
I'll remove explicit references to As for em, bdo, ruby, and other tags for doing things to text, I'm not sure there is an existing category that represents this, so I'll say "palpable content except for interactive content" inside options. If anyone has a better idea, I'm all ears! |
Here is an updated overview of the new content model (to replace #10317 (comment)): Within
Within
Within
|
understand the feedback about no span outside of options - but not sure why it wouldn't be allowed within options? Or is that a miss that it's not listed along with div within option? any other feedback needed to remove img/svg from being direct allowances of select (e.g., are they really necessary between options?), vs just allowed within options? |
After looking through una's demos:
|
In my last comment I said that I didn't have any evidence that authors use divs inside options, but @brechtDR was just showing me a demo which uses div inside options: https://codepen.io/utilitybend/pen/PoMbYRg/f7ceec6bf1b0153e77928e014ef210ba Maybe we should allow divs and spans inside options? |
To elaborate a bit. One of the reasons i'd like to use at least
I just want to quickly add 2 items below each other. If it's possible, why not allow it as it is just one little task that is less tedious and speeds up development a bit? Yes, i know, you could just add two spans and set them to display block... question as a developer is: Why? Do I really have to? Why is this restricted? This feels like an unnecessary rule (especially since div is generic, in contrast to video or paragraphs). |
i don't see any reason not to allow either of those elements within options. there are plenty of examples of developers doing this if you look at custom listboxes containing |
The proposed content model seems overly strict. I have a strong bias towards being more expressive and less restrictive overall. The focus here seems to be mostly on styling/display and not considering the potential for extended functionality or future innovation. Disallowing custom elements inside I definitely acknowledge the large trade off between providing a more expressive API and maintaining base functional guarantees and accessibility. In general, I favor trusting the developer and giving them more power. |
Custom elements seems fine to me as long as their content doesn't go against the content model. I'm not sure if there is any prior art to be able to do this in the HTML spec's content model though. |
I'd prefer not to calculate alt text and incorporate that into these getters/attributes. Would it just be for the alt attribute on img elements? Didn't scott recommend that imgs used in select shouldn't even have any alt text in the first place? |
i was/am not keen on the idea of informative images being used outside of options. but an img element inside of an option, that could be decorative to sibling text. Or it could be the only content of the option, and so long as it has alt text, then that's the text fallback / value of the option. With an svg, it looks like if actual text is defined in the SVG ( so alt and text from within an svg seem like maybe they'd be in scope? I'm not sure about ARIA attributes though - even though people will absolutely want/expect to use these, since they can with custom ARIA versions of selects (combobox / popup listboxes with options) but anything that fully relied on ARIA or CSS to be accessible / render... maybe to Anne's earlier comment
such things shouldn't be considered conforming - at least not without a fallback that would be able to render in browsers that didn't support customizable select? |
Why not?
I think so. SVG is an interesting case I hadn't thought about. I don't think SVG defines an algorithm we can use, but using the text contents of the first (ARIA attributes are out-of-scope as they shouldn't influence core HTML semantics.) |
From WHATNOT discussion: We should add alt text to display label, but maybe not submitted value. SVG elements also have a title element that we could use as a text representation for svgs. |
For SVG elements, we can use the SVG |
I was very surprised at the idea that Those accessibility strings are human-facing, whereas the submitted value is computer-facing. I worry that this will cause people to start writing their accessibility strings as computer-facing instead. |
I agree with domenic and I think that we can include I have a clarifying question though - should we use img alt text in the case that there is only an img with alt text and no other text in the option, or in all cases? If we're going to use img alt text in the case that there is also DOM text nodes, how should we concatenate the alt text with the adjacent DOM text nodes? Here's an example: <option>
<img alt="hello world" src=...>option one
</option> What should the label be? This would be easier if we only include alt text in the label when there is no DOM text nodes. @scottaohara |
all browsers handle this now per the accName algorithm. a space is added between the img element and the text in the calculation of the name. i think it would be a mistake to allow authors to use images in options, but throw a curve ball and tell them that setting an alt wouldn't do anything. it already works in the name calculation for the option, so this would effectively break something that already works fine. this seems more a problem with how to calculate the submitted value than what to expose to users visually / via the a11y tree. as far as that is concerned, i agree with Domenic that I would not expect ARIA to contribute to that at all. I would, however, expect an image's alt to be included as part of the text idl if an explicit if for some reason that's something that can't be solved, then it seems like there would need to be author guidance to state that if people are using images within their options, then they MUST also specify a value attribute with the string they want submitted. We're likely going to need that guidance to inform authors that ARIA should also not be expected to be considered for the submitted value of the option. Making a very clear distinction between the value someone perceives from an option's visible label or a11y name VS what would be the computed value that participates in form submission. |
What do you think the |
I am aware of the value IDL. Yes. thanks.... in my experience devs use the specified value, OR they expect the value to be calculated by the text content of the option - which given Anne's prior response, I would have thought the image's fallback text could have been made to take part of thta text calculation - so then per the HTML spec:
a developer could expect whatever they set as the option's text / label (including alt text) as to then become the value to send to the server. working with developers who work with javascript frameworks and component libraries that have custom selects built with JS / ARIA - they similarly either grab the computed text of an option (which might then need to include image’s alts), or they use a custom attribute / data- attribute to provide a value - or they just have it all setup in their scripting and the actual value of an option isn't included in what's sent to the DOM. all that said - i'm more concerned with the human facing label/value. if there is some reason that alt text can't be considered part of this computation, then i'm not trying to say "this must be done". far from it actually. I'm saying that if this can't be done, then developers need to be made aware of that. but i'm against the idea of not including an image's alt in the computed name/label of an option - per joey's comment "This would be easier if we only include alt text in the label when there is no DOM text nodes". Doing that would make something like But this is already a solved problem where the accname is properly computed for that situation. let's not break that because there seems to be hesitation about including an image's alt in the submitted value. If that won’t be done, then devs need to be informed that they must also set a value for instances where an image that serves as more than decoration is used. That might be inconvenient in some cases but shouldn’t be a huge problem for a dev. |
For sure, the human-facing name/label should include those things. I just think that does not need to have any connection the developer-facing |
then we agree on the part that's the most important to what i'm concerned with. While I have my preference, as long as its clear in the spec what will / won't be used to calculate an option's value if a value attribute is not set, then that's all that really matters to me on that topic. |
This is a follow on to #10310 to move discussion on what to do about the potential content models for styleable selects, and its current/proposed directly supported children/descendants (option, optgroup, hr, button, datalist). Additionally, I'd expect this discussion could also cover what may be rendered in a select or not, regardless of whether the elements are parsed out or not. (as was noted in the other issue, one can get around the parser and inject elements into a select - but they don't actually render. that's clearly not the intent for what changing the parser would do, continue to not have elements render - but maybe some still shouldnt?)
One reason to start this discussion is to also determine potential use cases / author intent for content that extends beyond the current content model. For instance, someone wanted to provide a description to an option element - they might think to intervene options with divs or paragraph elements to do this:
but that isn't really enough to just allow the paragraph in there - there needs to be an association between the paragraph and the option so that the paragraph's content can be relayed via the a11y api as the options description. And putting the paragraph within the option means it'd contribute to its accessible name (undesired).
So, is it enough to just allow any content in and have authors hook it up themselves. Or have HTML determine new definitions for how elements work together in this context? Or is it really a new supporting element that is needed, and allowing
main
,article
,video
,iframe
into the mix is just noise and potential for author error that didn't exist since the parser didn't allow these things before?I hope this serves as enough to get this ball rolling.
The text was updated successfully, but these errors were encountered: