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

Ensure dialogs have an accessible name

Checks that dialog elements have accessible names to orient screen reader users.

Utilities
Quick take
Typical fix time 10 min
  • All dialog and alertdialog elements must have a descriptive label
  • Use `aria-labelledby` to point to a title or `aria-label` for a direct string
  • Helps users understand the context and purpose of the modal
Why it matters: When a dialog opens, screen readers should announce its purpose immediately so users know why their focus has shifted and what information is required.

Rule Details

Dialogs (modals) interrupt the user's flow. To provide a smooth transition for assistive technology users, the dialog must identify itself as soon as it gains focus.

Code Example

<!-- ✅ Correct: Using aria-labelledby to point to the header -->
<div role="dialog" aria-labelledby="modal-title" aria-modal="true">
  <h2 id="modal-title">Edit Profile</h2>
  <form>...</form>
</div>
 
<!-- ✅ Correct: Using aria-label for a simple notification -->
<div role="alertdialog" aria-label="Session Timeout" aria-modal="true">
  <p>Your session is about to expire.</p>
  <button>Stay logged in</button>
</div>
 
<!-- ❌ Incorrect: No accessible name -->
<div role="dialog">
  <p>Some content without a title...</p>
</div>

Why It Matters

  • Orientation: Helps users immediately understand they have entered a new context or "window."
  • Context: Clearly states the purpose of the dialog (e.g., "Confirm Deletion") before the user starts interacting with its contents.
  • Compliance: Follows WAI-ARIA best practices for accessible modal windows and user interface patterns.
  • Efficiency: Allows users to decide whether to interact with or dismiss the dialog based on its title alone.

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 every element with `role="dialog"` or `role="alertdialog"` has an accessible name.

Fix

Auto-fix issues

Provide an accessible name for the dialog using `aria-labelledby` (pointing to the header) or `aria-label`.

Explain

Learn more

Explain why naming dialogs is crucial for orienting screen reader users when modals appear.

Review

Code review

Review the rendered markup and interactive states that affect Ensure dialogs have an accessible name. 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
Modal Pattern – UX Patterns for Developers

Comprehensive UX pattern guide covering anatomy, accessibility, best practices, and implementation.

uxpatterns.devGuide

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

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 ARIA command elements

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

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