Radio group with error - aria-label applied to <fieldset>

Return to main list

This is a test case designed to determine how an error message associated with a radio group will be announced by various screen readers.

Example

Do you like boats?

Error: Choose at least one option

Code

<fieldset aria-label="Do you like boats? Error: Choose at least one option">
  <legend>Do you like boats?</legend>
  <div class="form-group">
    <input type="radio" id="boats-y" name="boats">
    <label for="boats-y">Yes</label>
  </div>
  <div class="form-group">
    <input type="radio" id="boats-n" name="boats">
    <label for="boats-n">No</label>
  </div>
  <p class="error-message" id="e01">Error: Choose at least one option</p>
</fieldset>

Assistive technologies

VoiceOver

NVDA

JAWS

Return to main list