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

Use only allowed ARIA attributes for each role

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

Utilities
Quick take
Typical fix time 10 min
  • Each ARIA role only supports a specific set of ARIA attributes
  • Using unsupported attributes can confuse assistive technologies
  • Ensures the accessibility tree remains valid and meaningful
Why it matters: Invalid ARIA attributes are ignored by screen readers or may cause them to misinterpret the element's purpose, leading to a broken experience for users with disabilities.

Rule Details

ARIA (Accessible Rich Internet Applications) attributes must match the role of the element they are applied to. Using attributes that don't belong to a role can result in "silent" failures where accessibility information is lost.

Code Example

<!-- ✅ Correct: aria-checked is allowed on checkbox role -->
<div role="checkbox" aria-checked="true" tabindex="0">Subscribe</div>
 
<!-- ❌ Incorrect: aria-checked is NOT allowed on a heading role -->
<h1 role="heading" aria-checked="true">Main Title</h1>

Why It Matters

  • Standard Compliance: Adheres to WAI-ARIA specifications for robust and predictable web applications.
  • AT Accuracy: Guarantees that assistive technologies receive correct and relevant information about the element's state.
  • Reduced Noise: Prevents developers from adding redundant, invalid, or confusing metadata to the DOM.
  • Future Compatibility: Valid ARIA usage ensures that your application remains accessible as browser and screen reader implementations evolve.

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

Verify that all ARIA attributes used on elements are valid for their assigned WAI-ARIA roles.

Fix

Auto-fix issues

Remove or correct ARIA attributes that are not supported by the element's current ARIA role.

Explain

Learn more

Explain why using only role-supported ARIA attributes is necessary for proper screen reader communication.

Review

Code review

Review the rendered markup and interactive states that affect Use only allowed ARIA attributes for each role. 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 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
Hide decorative elements from assistive technology

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

Accessibility
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
Include required ARIA attributes for roles

Checks that elements have required ARIA attributes for their roles

Accessibility

Was this rule helpful?

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

Loading feedback...
0 / 385