Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Visual Example

...

Acceptance Criteria

As a screen reader user I should be provided with a form label for every form controlUse native and semantic HTML markup in connection with form related buttons.

As a screen reader and keyboard only user I should be able to explicitly associate text labels with their respective form controlactivate any form related buttons by either pressing the “ENTER” key or “Spacebar” on the keyboard.

Ensure elements with ARIA role="button" can be activated with both key commands.

...

Markup and Code

Code Block
<label for="feedback">Additional feedback and comments:</label><br>
<textarea id="feedback"></textarea>

...