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