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