v0.5.6
Patch Changes
-
#666
26ee73dThanks @eps1lon! - Consider<label />when computing the accessible name of<output />Given
<label for="outputid">Output Label</label> <output id="outputid"></output>
Previously the accessible name of the
<output />would ignore the<label />.
However, an<output />is labelable and therefore the accessible name is now computed using<label />elements if they exists.
In this example the accessible name is"Output Label".