WCAG 2.1 AA • AODA compliant • Updated 2025-10-28
What is this component? Breadcrumbs show the user’s location in a site hierarchy and provide quick navigation to ancestors.
| Requirement | WCAG Criteria | Description |
|---|---|---|
| Landmark/Structure | 1.3.1, 2.4.1 | Use <nav aria-label="Breadcrumb"> and an ordered list of links. |
| Current page | 4.1.2 | Mark the last item as current with aria-current="page" and render as text (not a link). |
| ARIA Role/Attribute | Used On | Purpose & Usage |
|---|---|---|
<nav aria-label="Breadcrumb"> | Container | Announces purpose to AT. |
aria-current="page" | Current page item | Conveys that the item represents the current page. |
aria-label="Breadcrumb".aria-current.| Test Item | WCAG Criteria | Pass Criteria |
|---|---|---|
| Nav and order | 2.4.1, 1.3.1 | Announced as breadcrumb; items ordered parent→child. |
| Current page | 4.1.2 | Final item is text with aria-current. |