<article>
← Return to main list
This test case is designed to determine how the <article>
element 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
<article>
<h4>Test content</h4>
</article>
Assistive technologies
VoiceOver
- Chrome: Article. [Stop] Heading level 4. Test content. [Stop] End of article.
- Firefox: Article. [Stop] Heading level 4. Test content. [Stop] End of article.
- Safari: Article. [Stop] Heading level 4. Test content. [Stop] End of article.
NVDA
- Chrome: Heading level 4. Test content. [Article not announced]
- Firefox: Heading level 4. Test content. [Article not announced]
- Edge: Heading level 4. Test content. [Article not announced]
JAWS
- Chrome: Article. [Stop] Heading level 4. Test content. [Stop] Article end.
- Firefox: Article. [Stop] Heading level 4. Test content. [Stop] Article end.
- Edge: Article. [Stop] Heading level 4. Test content. [Stop] Article end.
← Return to main list