<footer>
with aria-label
← Return to main list
This test case is designed to determine how the <footer>
element and an 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
<footer aria-label="Copyright info">
<h4>Test content</h4>
</footer>
Assistive technologies
VoiceOver
- Chrome: Copyright info. Footer. [Stop] Heading level 4. Test content. [Stop]. End of Copyright info. Footer.
- Firefox: Copyright info. Content. [Stop] Heading level 4. Test content. [Stop]. End of Copyright info. Content.
- Safari: Copyright info. Content information. [Stop] Heading level 4. Test content. [Stop]. End of Copyright info. Content information.
NVDA
- Chrome: Copyright info. Contentinfo landmark. Heading level 4. Test content.
- Firefox: Copyright info. Contentinfo landmark. Heading level 4. Test content.
- Edge: Copyright info. Contentinfo landmark. Heading level 4. Test content.
JAWS
- Chrome: Heading level 4. Test content. [Footer not announced]
- Firefox: Heading level 4. Test content. [Footer not announced]
- Edge: Heading level 4. Test content. [Footer not announced]
← Return to main list