<button>
with disabled
← Return to main list
This is a test case designed to determine how the disabled
attribute, applied to the <button>
element, is announced by various screen readers.
Disabled attributes cannot receive focus, so the only way to test how these attributes are announced is via:
- VoiceOver: Announce next item: VO + Right Arrow
- NVDA and JAWS: Announce next line: DOWN ARROW
Example
Code
<button disabled>Submit</button>
Assistive technologies
VoiceOver
- Chrome: Submit. Dimmed. Button.
- Firefox: Submit. Dimmed. Button.
- Safari: Submit. Dimmed. Button.
NVDA
- Chrome: Button. Unavailable. Submit.
- Firefox: Button. Unavailable. Submit.
- Edge: Button. Unavailable. Submit.
JAWS
- Chrome: Submit. Button. Unavailable.
- Edge: Submit. Button. Unavailable.
← Return to main list