On this page4 sections
ReferenceIntermediate4-6 min reference

WCAG Quick Reference for QA

WCAG is large; most defects cluster around a handful of checks you can do without specialist tools. This sheet is that shortlist — the level, the practical test, and what failure looks like. It complements the fuller Accessibility Testing sheet and the contrast/checker utilities linked below.

Conformance levels

A (must), AA (the common legal/target bar), AAA (enhanced). Most teams test to AA.

The high-yield checks

CheckWCAGHow to test by handFails when
Keyboard only2.1.1 (A)Unplug the mouse; Tab/Shift-Tab/Enter/Esc through everythingA control can't be reached or operated
Visible focus2.4.7 (AA)Tab around and watchNo visible focus ring
Focus order2.4.3 (A)Tab order follows reading orderFocus jumps around illogically
Text contrast1.4.3 (AA)Contrast checker — 4.5:1 text, 3:1 large/UIBelow the ratio
Text alternatives1.1.1 (A)Inspect images for meaningful altInformative image has empty/missing alt
Form labels1.3.1 / 4.1.2Every input has a programmatic <label>Placeholder used as the only label
Error identification3.3.1 (A)Submit invalid dataErrors shown by colour only / not announced
Headings & landmarks1.3.1 (A)Check h1…h6 order; one h1Skipped levels; headings used for size
Resize / reflow1.4.4 / 1.4.10 (AA)Zoom to 200%Content clipped or horizontal scroll
Page language3.1.1 (A)View source for <html lang>Missing or wrong

When to use

A pre-merge sanity pass on a new screen, or triaging an accessibility bug. Automated tools (axe) catch ~30–40% of issues — pair them with these manual checks; don't rely on either alone.

Common mistakes

  • Relying on the automated scan only — keyboard and focus order are manual.
  • Placeholder text mistaken for a label.
  • Conveying errors/status with colour alone.
  • Testing at 100% zoom only, missing reflow failures.
  • Decorative images given verbose alt text (they should be empty alt="").

// Related resources