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

Include required ARIA attributes for roles

Checks that elements have required ARIA attributes for their roles

Utilities
Quick take
Typical fix time 10 min
  • Identify roles that require specific state or property attributes
  • Ensure attributes like `aria-valuenow` for sliders are present
  • Validate that all required ARIA attributes are correctly implemented
Why it matters: Certain ARIA roles are incomplete without their required attributes, preventing assistive technologies from correctly communicating the element's state or value.

Rule Details

ARIA roles often have mandatory attributes that must be present for the element to be considered valid and accessible.

Code Example

<!-- Correct Slider implementation -->
<div role="slider"
     aria-valuenow="50"
     aria-valuemin="0"
     aria-valuemax="100"
     aria-label="Volume level">
</div>
 
<!-- Correct Scrollbar implementation -->
<div role="scrollbar"
     aria-controls="content-id"
     aria-orientation="vertical"
     aria-valuenow="25"
     aria-valuemin="0"
     aria-valuemax="100">
</div>

Why It Matters

  • Functional Integrity: Many roles are non-functional without their supporting attributes.
  • Accurate Communication: Screen readers rely on these attributes to announce the current state (e.g., the current value of a slider).
  • Spec Compliance: Adheres to the W3C ARIA standard, ensuring better cross-browser accessibility.
  • User Control: Allows users to understand the boundaries (min/max) and current state of interactive controls.

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 roles have their mandatory attributes as defined by the WAI-ARIA specification.

Fix

Auto-fix issues

Add the missing required ARIA attributes to elements with specific roles (e.g., aria-valuenow for role="slider").

Explain

Learn more

Explain how required ARIA attributes provide critical state information that screen readers need to function correctly.

Review

Code review

Review the rendered markup and interactive states that affect Include required ARIA attributes for 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.

Ensure ARIA roles are contained by required parent roles

Checks that elements with certain roles have required parent roles

Accessibility
Ensure ARIA attributes are valid

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

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

Was this rule helpful?

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

Loading feedback...
0 / 385