role="form"
← Return to main list
This test case is designed to determine how role="form"
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="form">
<form action="#">
Test content
</form>
</div>
Assistive technologies
VoiceOver
- Chrome: Test content. [Form role not announced]
- Firefox: Test content. [Form role not announced]
- Safari: Test content. [Form role not announced]
NVDA
- Chrome: Form. Test content.
- Firefox: Form. Test content.
- Edge: Form. Test content.
JAWS
- Chrome: Test content. [Form role not announced]
- Firefox: Test content. [Form role not announced]
- Edge: Test content. [Form role not announced]
← Return to main list