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

Provide accessible names for progress bars

Checks that progressbar elements have accessible names

Utilities
Quick take
Typical fix time 10 min
  • Use `aria-label` or `aria-labelledby` to name progress bars
  • Ensure the name describes what the progress indicates
  • Avoid redundant text like "progress" in the label
  • Provide `aria-valuenow`, `aria-valuemin`, and `aria-valuemax` when the value is known
  • Visual progress meters should use real progress semantics rather than decorative divs when they communicate status
Why it matters: Without an accessible name, screen reader users will only hear that a progress bar exists but won't know what task or process it represents.

Rule Details

Every progress bar must have an accessible name so that users of assistive technologies understand what process is being tracked.

Code Example

<!-- Using aria-label -->
<div role="progressbar" 
     aria-valuenow="70" 
     aria-valuemin="0" 
     aria-valuemax="100" 
     aria-label="Uploading files...">
</div>
 
<!-- Using aria-labelledby -->
<h3 id="loading-label">Fetching your data</h3>
<div role="progressbar" 
     aria-labelledby="loading-label"
     aria-valuenow="30" 
     aria-valuemin="0" 
     aria-valuemax="100">
</div>

Why It Matters

  • Contextual Awareness: Tells users what the loading state refers to (e.g., "File Upload" vs "System Update").
  • Screen Reader Support: Ensures the element is announced as more than just a generic "progress bar."
  • Clarity: Prevents confusion when multiple progress indicators are present on a single page.
  • Compliance: Meets WCAG requirements for naming interactive and status-providing components.

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

Check if all progress bar elements (role="progressbar") have an accessible name via aria-label or aria-labelledby.

Fix

Auto-fix issues

Add an aria-label or aria-labelledby attribute to the progress bar to describe what it is measuring.

Explain

Learn more

Explain why progress bars need accessible names for screen reader users to understand the context of the loading state.

Review

Code review

Review the rendered markup and interactive states that affect Provide accessible names for progress bars. 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.

Provide accessible names for ARIA command elements

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

Accessibility
Provide accessible names for tree items

All elements with role="treeitem" must have a descriptive accessible name so screen reader users can navigate hierarchical tree widgets.

Accessibility
Ensure all input fields have accessible names

Checks that input fields have accessible names so screen reader users know what data each field expects.

Accessibility
Provide accessible names for meter elements

Checks that meter elements have accessible names to provide context for measurements.

Accessibility

Was this rule helpful?

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

Loading feedback...
0 / 385