Landmark roles
Whether perceptible content exists on any landmark(Work in prgress)- Whether
banner
,main
,complementary
andcontentinfo
are top-level landmarks - Whether a specific landmark roll has unique label when used multiple times on a page
Check the above and warn if it is not satisfied.
It is based on W3C ARIA Landmarks Example.
Rule Details
👎 Examples of incorrect code for this rule
<!DOCTYPE html>
<html>
<body>
<header>...</header>
<nav>...</nav>
<main>
<header>...</header>
<footer>...</footer>
<nav>Duplicate navigation landmarks without a label</nav>
<aside>Complementary landmark not at the top level</aside>
</main>
<footer>...</footer>
</body>
</html>
👍 Examples of correct code for this rule
<!DOCTYPE html>
<html>
<body>
<header>...</header>
<nav aria-label="main">...</nav>
<main>
<header>...</header>
<footer>...</footer>
<nav aria-label="sub">...</nav>
</main>
<aside>...</aside>
<footer>...</footer>
</body>
</html>
Setting value
- Type:
boolean
- Optional
- Default value:
true
Options
ignoreRoles
- Type:
('banner' | 'main' | 'complementary' | 'contentinfo' | 'form' | 'navigation' | 'region')[]
- Default value:
[]
Excludes the specified landmark roll from the warning.
labelEachArea
- Type:
boolean
- Default value:
true
Warn if there is a unique label if a particular landmark role is used multiple times on the page.
Default severity
warning