Skip to main content
Beta: Front-End Checklist is currently in beta. Some issues are still being fixed. Thanks for your patience.

Avoid using deprecated ARIA roles

Checks for deprecated or abstract ARIA roles to ensure long-term compatibility.

Utilities
Quick take
Typical fix time 10 min
  • Deprecated ARIA roles should be replaced with modern equivalents
  • Browsers may drop support for deprecated roles in future versions
  • Ensures long-term compatibility with assistive technologies
Why it matters: Using deprecated roles can lead to inconsistent behavior across different browsers and screen readers as they transition to newer standards.

Rule Details

As the WAI-ARIA specification evolves, some roles are deprecated in favor of more precise or better-supported alternatives. Using modern roles ensures your application remains accessible for years to come.

Code Example

<!-- ✅ Correct: Use modern roles or native elements -->
<nav aria-label="Site">...</nav>
<ul role="list">...</ul>
 
<!-- ❌ Incorrect: Using deprecated roles -->
<div role="directory">...</div>

Why It Matters

  • Future-Proofing: Keeps the application compatible with evolving browser and assistive technology (AT) standards.
  • Reliability: Ensures consistent interpretation of element roles across all platforms and devices.
  • Semantic Accuracy: Modern roles often provide more precise meaning than older, deprecated ones, leading to a better user experience.
  • Cleaner Code: Often, a deprecated role can be replaced by a native HTML element (like <nav> instead of role="navigation"), which is the preferred approach.

Exceptions

  • Prefer native HTML semantics over ARIA when both are possible; some apparent ARIA failures disappear when the underlying element is corrected.
  • A missing ARIA attribute is not automatically the strongest finding if the control is already semantically broken, unnamed, or keyboard-inaccessible.
  • Do not add ARIA only to satisfy the rule if the feature should instead be implemented with a native element or a simpler interaction pattern.

Standards

  • Align the implementation with WAI-ARIA 1.2 and verify the rendered experience, not only the source code.
  • Align the implementation with MDN: ARIA and verify the rendered experience, not only the source code.

Verification

Automated Checks

  • Inspect the browser accessibility tree or accessibility pane for the relevant element, role, or accessible name.
  • Run an automated accessibility checker such as axe or Lighthouse where applicable.

Manual Checks

  • Test the affected UI with keyboard-only navigation and confirm the rule holds in the rendered experience.
  • Re-test one representative user flow with a screen reader if this rule affects a key interaction.

Use with AI

Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.

Check

Verify implementation

Search the codebase for deprecated ARIA roles like `directory` or abstract roles that shouldn't be used in HTML.

Fix

Auto-fix issues

Update deprecated ARIA roles to their modern recommended equivalents or use native HTML elements.

Explain

Learn more

Explain the risks of using deprecated ARIA roles and the benefits of moving to modern ARIA standards.

Review

Code review

Review the rendered markup and interactive states that affect Avoid using deprecated ARIA roles. Flag exact elements, roles, labels, focus behavior, or keyboard interactions that violate the rule, and note how to verify the fix with browser accessibility tooling or assistive tech.

Sources

References used to support the guidance in this rule.

Further Reading

Tools and supplementary material for exploring the topic in more depth.

axe DevTools
deque.comTool

Rules that often go hand-in-hand with this one.

Do not use aria-hidden on the document body

Ensures the document body is not set to aria-hidden, which would hide the entire page from screen readers.

Accessibility
Use only allowed ARIA attributes for each role

Checks that ARIA attributes are allowed on their elements to ensure valid accessibility trees.

Accessibility
Provide accessible names for ARIA command elements

Checks that command elements like buttons and links have accessible names for screen reader support.

Accessibility
Ensure ARIA roles contain required child roles

Elements with certain ARIA roles must contain the required child roles or the widget structure will be broken for assistive technologies.

Accessibility

Was this rule helpful?

Your feedback helps improve rule quality. This stays internal for now.

Loading feedback...
0 / 385