Accessibility Auditor
Overview
Audits web pages and UI components against WCAG 2.2 (Level AA) success criteria. Identifies violations in color contrast, keyboard navigation, ARIA usage, semantic HTML, form labeling, focus management, and dynamic content updates. Produces actionable fixes with exact code changes.
Instructions
When asked to audit accessibility:
Determine the scope:
- Single component, full page, or entire application?
- Target compliance level: A, AA (default), or AAA?
- Any specific regulations: EAA (European Accessibility Act), ADA, Section 508?
Check semantic structure (WCAG 1.3.1, 1.3.2):
- Heading hierarchy: h1 → h2 → h3, no skipped levels
- Landmark regions:
<nav>, <main>, <header>, <footer>, <aside>
- Lists use
<ul>/<ol>/<dl>, not styled <div>s
- Tables have
<th> with scope, and <caption> where appropriate
- Reading order matches visual order
Check text alternatives (WCAG 1.1.1):
- All
<img> have meaningful alt text (not "image", "photo", or filename)
- Decorative images use
alt="" or role="presentation"
- SVG icons have
<title> or aria-label
- Complex images (charts, diagrams) have extended descriptions
- Video/audio have captions and transcripts
Check color and contrast (WCAG 1.4.3, 1.4.11):
- Normal text: minimum 4.5:1 contrast ratio
- Large text (18px+ or 14px+ bold): minimum 3:1
- UI components and graphical objects: minimum 3:1
- Information not conveyed by color alone (WCAG 1.4.1)
- Compute exact contrast ratios for flagged elements
Check keyboard accessibility (WCAG 2.1.1, 2.1.2, 2.4.7):
- All interactive elements reachable via Tab key
- No keyboard traps (user can always Tab away)
- Focus indicators visible (not
outline: none without replacement)
- Custom components have appropriate keyboard handlers (Enter, Space, Arrow keys)
- Modal dialogs trap and restore focus correctly
- Skip-to-content link present
Check ARIA usage (WCAG 4.1.2):
- ARIA roles match element behavior
- Required ARIA attributes present (e.g.,
aria-expanded on toggles)
aria-live regions for dynamic content updates
- No redundant ARIA (e.g.,
role="button" on <button>)
aria-label/aria-labelledby on elements without visible text
Check forms (WCAG 1.3.5, 3.3.1, 3.3.2):
- All inputs have associated
<label> elements (not just placeholder text)
- Error messages are programmatically associated with inputs
- Required fields indicated with more than just color
autocomplete attributes on common fields (name, email, address)
- Form validation errors announced to screen readers
Output format for each violation:
- WCAG criterion number and name
- Severity: Critical / Major / Minor
- Element and location (file:line or CSS selector)
- What's wrong (specific, not generic)
- Exact code fix
- Who is affected (screen reader users, keyboard users, low vision, etc.)
Examples
Example 1: Component audit
Input:
Audit this React login form for accessibility:
<form
<input type="email" placeholder="Email" value={email} />
<input type="password" placeholder="Password" value={pw} />
<div className="error" style={{color: 'red'}}>{error}</div>
<div className="submit-btn" In</div>
</form>
Output:
Accessibility Audit: Login Form
=================================
6 violations found (3 Critical, 2 Major, 1 Minor)
CRITICAL [WCAG 1.3.5] — Missing autocomplete attributes
Elements: email input, password input
Fix: Add autocomplete="email" and autocomplete="current-password"
Affected: Users relying on autofill, password managers, and assistive tech
CRITICAL [WCAG 3.3.2] — Inputs have no accessible labels
Elements: both <input> fields
Problem: Placeholder text disappears on focus and is not a label.
Fix: Add <label htmlFor="email">Email</label> before each input,
or use aria-label="Email address" as minimum.
CRITICAL [WCAG 2.1.1] — Submit button is not keyboard accessible
Element: <div className="submit-btn">
Problem: <div> is not focusable and onClick doesn't fire on Enter key.
Fix: Replace with <button type="submit">Log In</button>
MAJOR [WCAG 3.3.1] — Error message not associated with input
Element: <div className="error">
Fix: Add role="alert" and aria-live="polite" to announce errors.
Associate with input: aria-describedby="login-error" on the relevant input.
MAJOR [WCAG 1.4.1] — Error indicated by color alone
Element: error div with color: red
Fix: Add an icon (⚠) or prefix "Error:" to the text.
MINOR [WCAG 1.4.3] — Verify error text contrast
Red (#FF0000) on white (#FFFFFF) = 4.0:1 — fails for normal text.
Fix: Use #D32F2F (darker red) for 5.9:1 ratio.
Example 2: Keyboard navigation audit
Input:
Check keyboard accessibility of our dropdown menu component in src/components/Dropdown.tsx
Output:
Keyboard Audit: Dropdown Component
====================================
3 violations found.
CRITICAL [WCAG 2.1.2] — Keyboard trap in open dropdown
When dropdown is open, Tab moves focus into the list but pressing Escape
does nothing. User is trapped.
Fix: Add onKeyDown handler:
if (e.key === 'Escape') { setOpen(false); triggerRef.current.focus(); }
MAJOR [WCAG 2.1.1] — Arrow key navigation missing
Dropdown items are only reachable via Tab. Standard pattern requires
ArrowDown/ArrowUp to move between options.
Fix: Add roving tabIndex pattern — active item gets tabIndex={0},
others get tabIndex={-1}. ArrowDown moves focus to next item.
MAJOR [WCAG 4.1.2] — Missing ARIA attributes
The trigger button lacks aria-expanded and aria-haspopup.
Fix: <button aria-expanded={isOpen} aria-haspopup="listbox">
The list needs role="listbox" and items need role="option".
Guidelines
- Default to WCAG 2.2 Level AA unless the user specifies otherwise.
- Always provide exact code fixes, not just descriptions of the problem.
- Prioritize Critical issues (blocks entire user groups) over Minor (suboptimal experience).
- Test ARIA patterns against established WAI-ARIA Authoring Practices for correctness.
- Note that automated audits catch ~30% of accessibility issues — recommend manual testing with screen readers for the rest.
- For color contrast, calculate actual ratios — don't eyeball it.
- Flag
tabIndex values greater than 0 as an anti-pattern (disrupts natural tab order).
1---2name: accessibility-auditor3description: Accessibility Auditor4---5# Accessibility Auditor67## Overview89Audits web pages and UI components against WCAG 2.2 (Level AA) success criteria. Identifies violations in color contrast, keyboard navigation, ARIA usage, semantic HTML, form labeling, focus management, and dynamic content updates. Produces actionable fixes with exact code changes.1011## Instructions1213When asked to audit accessibility:14151. **Determine the scope:**16 - Single component, full page, or entire application?17 - Target compliance level: A, AA (default), or AAA?18 - Any specific regulations: EAA (European Accessibility Act), ADA, Section 508?19202. **Check semantic structure (WCAG 1.3.1, 1.3.2):**21 - Heading hierarchy: h1 → h2 → h3, no skipped levels22 - Landmark regions: `<nav>`, `<main>`, `<header>`, `<footer>`, `<aside>`23 - Lists use `<ul>`/`<ol>`/`<dl>`, not styled `<div>`s24 - Tables have `<th>` with `scope`, and `<caption>` where appropriate25 - Reading order matches visual order26273. **Check text alternatives (WCAG 1.1.1):**28 - All `<img>` have meaningful `alt` text (not "image", "photo", or filename)29 - Decorative images use `alt=""` or `role="presentation"`30 - SVG icons have `<title>` or `aria-label`31 - Complex images (charts, diagrams) have extended descriptions32 - Video/audio have captions and transcripts33344. **Check color and contrast (WCAG 1.4.3, 1.4.11):**35 - Normal text: minimum 4.5:1 contrast ratio36 - Large text (18px+ or 14px+ bold): minimum 3:137 - UI components and graphical objects: minimum 3:138 - Information not conveyed by color alone (WCAG 1.4.1)39 - Compute exact contrast ratios for flagged elements40415. **Check keyboard accessibility (WCAG 2.1.1, 2.1.2, 2.4.7):**42 - All interactive elements reachable via Tab key43 - No keyboard traps (user can always Tab away)44 - Focus indicators visible (not `outline: none` without replacement)45 - Custom components have appropriate keyboard handlers (Enter, Space, Arrow keys)46 - Modal dialogs trap and restore focus correctly47 - Skip-to-content link present48496. **Check ARIA usage (WCAG 4.1.2):**50 - ARIA roles match element behavior51 - Required ARIA attributes present (e.g., `aria-expanded` on toggles)52 - `aria-live` regions for dynamic content updates53 - No redundant ARIA (e.g., `role="button"` on `<button>`)54 - `aria-label`/`aria-labelledby` on elements without visible text55567. **Check forms (WCAG 1.3.5, 3.3.1, 3.3.2):**57 - All inputs have associated `<label>` elements (not just placeholder text)58 - Error messages are programmatically associated with inputs59 - Required fields indicated with more than just color60 - `autocomplete` attributes on common fields (name, email, address)61 - Form validation errors announced to screen readers62638. **Output format for each violation:**64 - WCAG criterion number and name65 - Severity: Critical / Major / Minor66 - Element and location (file:line or CSS selector)67 - What's wrong (specific, not generic)68 - Exact code fix69 - Who is affected (screen reader users, keyboard users, low vision, etc.)7071## Examples7273### Example 1: Component audit7475**Input:**76```77Audit this React login form for accessibility:78<form onSubmit={handleLogin}>79 <input type="email" placeholder="Email" value={email} onChange={setEmail} />80 <input type="password" placeholder="Password" value={pw} onChange={setPw} />81 <div className="error" style={{color: 'red'}}>{error}</div>82 <div className="submit-btn" onClick={handleLogin}>Log In</div>83</form>84```8586**Output:**87```88Accessibility Audit: Login Form89=================================906 violations found (3 Critical, 2 Major, 1 Minor)9192CRITICAL [WCAG 1.3.5] — Missing autocomplete attributes93 Elements: email input, password input94 Fix: Add autocomplete="email" and autocomplete="current-password"95 Affected: Users relying on autofill, password managers, and assistive tech9697CRITICAL [WCAG 3.3.2] — Inputs have no accessible labels98 Elements: both <input> fields99 Problem: Placeholder text disappears on focus and is not a label.100 Fix: Add <label htmlFor="email">Email</label> before each input,101 or use aria-label="Email address" as minimum.102103CRITICAL [WCAG 2.1.1] — Submit button is not keyboard accessible104 Element: <div className="submit-btn">105 Problem: <div> is not focusable and onClick doesn't fire on Enter key.106 Fix: Replace with <button type="submit">Log In</button>107108MAJOR [WCAG 3.3.1] — Error message not associated with input109 Element: <div className="error">110 Fix: Add role="alert" and aria-live="polite" to announce errors.111 Associate with input: aria-describedby="login-error" on the relevant input.112113MAJOR [WCAG 1.4.1] — Error indicated by color alone114 Element: error div with color: red115 Fix: Add an icon (⚠) or prefix "Error:" to the text.116117MINOR [WCAG 1.4.3] — Verify error text contrast118 Red (#FF0000) on white (#FFFFFF) = 4.0:1 — fails for normal text.119 Fix: Use #D32F2F (darker red) for 5.9:1 ratio.120```121122### Example 2: Keyboard navigation audit123124**Input:**125```126Check keyboard accessibility of our dropdown menu component in src/components/Dropdown.tsx127```128129**Output:**130```131Keyboard Audit: Dropdown Component132====================================1333 violations found.134135CRITICAL [WCAG 2.1.2] — Keyboard trap in open dropdown136 When dropdown is open, Tab moves focus into the list but pressing Escape137 does nothing. User is trapped.138 Fix: Add onKeyDown handler:139 if (e.key === 'Escape') { setOpen(false); triggerRef.current.focus(); }140141MAJOR [WCAG 2.1.1] — Arrow key navigation missing142 Dropdown items are only reachable via Tab. Standard pattern requires143 ArrowDown/ArrowUp to move between options.144 Fix: Add roving tabIndex pattern — active item gets tabIndex={0},145 others get tabIndex={-1}. ArrowDown moves focus to next item.146147MAJOR [WCAG 4.1.2] — Missing ARIA attributes148 The trigger button lacks aria-expanded and aria-haspopup.149 Fix: <button aria-expanded={isOpen} aria-haspopup="listbox">150 The list needs role="listbox" and items need role="option".151```152153## Guidelines154155- Default to WCAG 2.2 Level AA unless the user specifies otherwise.156- Always provide exact code fixes, not just descriptions of the problem.157- Prioritize Critical issues (blocks entire user groups) over Minor (suboptimal experience).158- Test ARIA patterns against established WAI-ARIA Authoring Practices for correctness.159- Note that automated audits catch ~30% of accessibility issues — recommend manual testing with screen readers for the rest.160- For color contrast, calculate actual ratios — don't eyeball it.161- Flag `tabIndex` values greater than 0 as an anti-pattern (disrupts natural tab order).