Skip to content

v0.5.6

Choose a tag to compare

@github-actions github-actions released this 03 Jun 09:17
· 304 commits to main since this release
2be2716

Patch Changes

  • #666 26ee73d Thanks @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".