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