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

Use valid ARIA role values

Checks for valid ARIA role values

Utilities
Quick take
Typical fix time 10 min
  • Use only standard ARIA roles defined in the W3C specification
  • Avoid typos or non-existent roles (e.g., use `checkbox`, not `check-box`)
  • Ensure roles are applied to appropriate HTML elements
  • Prefer native HTML controls over custom ARIA widgets whenever possible
Why it matters: Invalid or misspelled ARIA roles are ignored by browsers and assistive technologies, rendering the intended accessibility features useless and potentially confusing users.

Rule Details

Only valid, standardized ARIA roles should be used to ensure compatibility with browsers and assistive technologies.

Code Example

<!-- ✅ Valid Roles -->
<div role="button">Click me</div>
<nav role="navigation">...</nav>
<div role="status">Saved changes</div>
 
<!-- ❌ Invalid/Common Typos -->
<div role="btn">Incorrect</div> <!-- Should be 'button' -->
<div role="check-box">Incorrect</div> <!-- Should be 'checkbox' -->
<div role="tooltip-item">Incorrect</div> <!-- Should be 'tooltip' -->
 
<!-- ✅ Better: native control instead of custom ARIA recreation -->
<button type="button">Click me</button>

Why It Matters

  • Technology Support: Assistive technologies (like VoiceOver or NVDA) only recognize official ARIA roles.
  • Browser Interpretation: Modern browsers use ARIA roles to expose elements correctly in the accessibility tree.
  • Future Proofing: Using standard roles ensures your site remains accessible as browsers and tools evolve.
  • Clarity: Standard roles have defined behaviors that users are already familiar with.

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 for any role attributes that use non-standard or misspelled ARIA role values.

Fix

Auto-fix issues

Replace invalid ARIA roles with the correct, standard values from the WAI-ARIA specification. When a native `<button>`, `<input>`, `<select>`, or other semantic element can replace the custom widget, prefer that change over adding more ARIA.

Explain

Learn more

Explain why using standardized ARIA roles is critical for ensuring that assistive technologies can interpret and announce elements correctly, and why native HTML controls are usually more reliable than recreating them with ARIA.

Review

Code review

Review the rendered markup and interactive states that affect Use valid ARIA role values. 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.

Ensure ARIA attributes are valid

All ARIA attributes must be valid and exist in the WAI-ARIA specification.

Accessibility
Announce dynamic content with ARIA live regions

Dynamic content updates are announced to screen readers using appropriate ARIA live regions.

Accessibility
Ensure ARIA roles are contained by required parent roles

Checks that elements with certain roles have required parent roles

Accessibility
Hide decorative elements from assistive technology

Decorative images and visual elements are hidden from screen readers using aria-hidden or empty alt attributes.

Accessibility

Was this rule helpful?

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

Loading feedback...
0 / 385