<section>
with aria-label
← Return to main list
This test case is designed to determine how the <section>
element and associated aria-label are announced by various screen readers.
By default, the element being tested does not receive focus, so the only way to test how it is announced is via:
- VoiceOver: Announce next item: VO + Right Arrow
- NVDA and JAWS: Announce next line: DOWN ARROW
Example
Code
<section aria-label="Comments">
<h4>Test content</h4>
</section>
Assistive technologies
VoiceOver
- Chrome: Comments. Region. [Stop] Heading level 4. Test content. [Stop] End of Comments. Region.
- Firefox: Comments. Region. [Stop] Heading level 4. Test content. [Stop] End of Comments. Region.
- Safari: Comments. Region. [Stop] Heading level 4. Test content. [Stop] End of Comments. Region.
NVDA
- Chrome: Comments. Region. Heading level 4. Test content.
- Firefox: Comments. Region. Heading level 4. Test content.
- Edge: Comments. Region. Heading level 4. Test content.
JAWS
- Chrome: Heading level 4. Test content. [Section not announced]
- Firefox: Heading level 4. Test content. [Section not announced]
- Edge: Heading level 4. Test content. [Section not announced]
← Return to main list