- 🇦🇺Australia klonos 90% Melbourne, Australia - 10% Larissa, Greece
@katannshaw → and @Amber Himes Matz → admittedly this is a hard problem to fix, but at the same time I don't think that it can be marked as "works as designed".
To sum up the problem:
<label>
elements should have afor
attribute that points to an HTMLid
of a labelable element (see https://html.spec.whatwg.org/multipage/forms.html#the-label-element )<div>
elements are NOT labelable elements (see https://html.spec.whatwg.org/multipage/forms.html#category-label ), so they should not be pointed to via thefor
attribute (and not have a<label>
to begin with).
So this for example, is NOT proper use of the label and for attribute:
<div id="edit-my-item" > <label for="edit-my-item">Test item </label> <div class="description">Test item description.</div> </div>
After some quick research, the best suggestion I have found is to use a combination of a
<span>
and thearia-describedby
attribute. Something like this for instance:<div aria-describedby="label-for-div" > <span id="label-for-div">Test item </span> <div class="description">Test item description.</div> </div>
Noting the following from https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attribut... :
- the
aria-labelledby
attribute is not appropriate, because it should only be used for interactive elements (whichdiv
s are NOT) - the
aria-describedby
is not ideal either, since it should be used for a description (longer text) rather than a label (short text)
The purpose of
aria-labelledby
is the same as that ofaria-label
. It provides the user with a recognizable, accessible name for an interactive element.The
aria-labelledby
andaria-describedby
attributes both reference other elements to calculate text alternatives.aria-labelledby
should reference brief text that provides the element with an accessible name.aria-describedby
is used to reference longer content that provides a description.Reopening this issue in order to figure out a proper solution to this, rather than haste to dismiss it.
- Status changed to Needs review
over 1 year ago 7:13am 18 August 2023 - last update
over 1 year ago 30,044 pass - 🇫🇮Finland lauriii Finland
This isn't implementing exactly what is in #17 which I think would be ideal. However, based on #3, it might be an improvement to remove the
for
attribute when the label is not used for phrasing content. Here's a patch that tries to add support for that in Form API, and adds a use of this to\Drupal\Core\Render\Element\Item
. - Status changed to Needs work
over 1 year ago 7:38pm 27 August 2023 - 🇺🇸United States smustgrave
Should a follow up be made for the other points from #17. Think since this adds improvement it should still move forward. Could the issue summary be updated and tests added?