role="navigation"
← Return to main list
This test case is designed to determine how role="navigation"
is 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
<div role="navigation">
Test content
</div>
Assistive technologies
VoiceOver
- Chrome: Navigation. [Stop] Test content. [Stop] End of navigation.
- Firefox: Navigation. [Stop] Test content. [Stop] End of navigation.
- Safari: Navigation. [Stop] Test content. [Stop] End of navigation.
NVDA
- Chrome: Navigation landmark. Test content.
- Firefox: Navigation landmark. Test content.
- Edge: Navigation landmark. Test content.
JAWS
- Chrome: Navigation region. [Stop] Test content. [Stop] Navigation region ends.
- Firefox: Navigation region. [Stop] Test content. [Stop] Navigation region ends.
- Edge: Navigation region. [Stop] Test content. [Stop] Navigation region ends.
← Return to main list