<header> descendant of <article>

Return to main list

This test case is designed to determine how the <header> element will be announced by various screen readers when it is a descendant of the <article> element.

In this case, the element should not be announced as a banner landmark, as it is not scoped to the <body> element, it is scoped to the <article> element

By default, the element being tested does not receive focus, so the only way to test how it is announced is via:

Example

Other content

Test content

Code

<article>
  Other content
  <header>
    <h4>Test content</h4>
  </header>
</article>

Assistive technologies

VoiceOver

NVDA

JAWS

Return to main list