Skip to content
IRC-Coding IRC-Coding
WCAG Accessibility POUR Contrast Keyboard Screenreader

WCAG Explained: POUR, Levels A/AA/AAA, Contrast & Keyboard

WCAG guidelines: POUR principles, conformance levels, success criteria, testing methods, and documentation with exam questions.

S

schutzgeist

2 min read

WCAG (Web Content Accessibility Guidelines)

This article is a definition of terms for WCAG – including exam questions, core components, and tags.

In a Nutshell

WCAG defines testable success criteria for accessibility along four principles:

  • perceivable
  • operable
  • understandable
  • robust

The typical target standard in projects is WCAG AA.

Compact Technical Description

WCAG (from W3C) has conformance levels:

  • A (Minimum)
  • AA (Practice standard)
  • AAA (Extended, not realistic everywhere)

The four principles are called POUR as an acronym.

Typical success criteria (examples):

  • Contrast (AA usually 4.5:1 for body text)
  • Keyboard operability
  • Focus visible
  • Clear labels/error messages

Implementation:

  • Semantic HTML before ARIA
  • Logical order
  • Focus management
  • Understandable error handling

Evidence: Automated scans + manual checks + Screen reader/keyboard tests.

Exam-Relevant Key Points

  • Explain POUR
  • Distinguish levels A/AA/AAA
  • Name contrast values
  • Keyboard path + focus visible
  • Tests: Scanner + manual + Assistive technology
  • Documentation: Checklist, test protocols, style guide
  • Relationship to EN 301 549 (EU)

Core Components

  1. Principles + success criteria
  2. Target level (AA) + scope
  3. Semantics/structure
  4. Keyboard operability
  5. Contrast + perceivability
  6. Labels/name-role-value
  7. Error tolerance/error messages
  8. Media alternatives
  9. Robust technology + ARIA correct
  10. QA process + protocols

Practical Example (Form)

- Visible labels + programmatic association
- Keyboard order linear, focus visible
- Error list links fields, error messages near fields
- Contrast 4.5:1 for text
- A11y checklist + test protocol in repo

Typical Exam Questions (with Short Answer)

  1. What does POUR mean? Perceivable, Operable, Understandable, Robust.
  2. AA contrast for body text? At least 4.5:1.
  3. How do you test efficiently? Automated + manual + keyboard/screen reader.

Most Important Sources

  1. https://www.w3.org/WAI/standards-guidelines/wcag/
  2. https://www.w3.org/WAI/WCAG22/quickref/
Back to Blog
Share:

Related Posts