You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chrome/Edge/Opera/Firefox use the label in their accessible name calculation, and use "My label" as the name. Safari doesn't use labeland uses "This is some output" as the name but maps output to AXStaticText which doesn't have a name.
<label for="test">My label</label>
<output id="test">This is some output</output>
The text was updated successfully, but these errors were encountered:
Should the accessible name computation for
output
include thelabel
element?https://w3c.github.io/html-aam/#output-element-accessible-name-computation
It's categorised as labelable in the the HTML Standard:
https://html.spec.whatwg.org/multipage/forms.html#category-label
Chrome/Edge/Opera/Firefox use the label in their accessible name calculation, and use "My label" as the name. Safari doesn't use
label
and uses "This is some output" as the namebut mapsoutput
to AXStaticText which doesn't have a name.The text was updated successfully, but these errors were encountered: