← Back to Blog

Accessibility Deadlines Are Here: A 2025–2026 Action Plan to Make Typing Tests Compliant (EAA, EN 301 549, and ADA Title II)

Accessibility Deadlines Are Here: A 2025–2026 Action Plan to Make Typing Tests Compliant (EAA, EN 301 549, and ADA Title II)

Why this matters now: the 2025–2026 deadlines

If your typing test serves EU consumers (especially if you take payments, sell subscriptions, or run any e‑commerce flow), the European Accessibility Act (Directive (EU) 2019/882) applies from June 28, 2025. It covers selected products and services—including e‑commerce—and allows limited transitional arrangements until June 28, 2030 for services that rely on products already in lawful use before the applicability date. (eur-lex.europa.eu)

In the U.S., the Department of Justice finalized the ADA Title II web and mobile rule. State and local governments serving populations of 50,000+ must conform to WCAG 2.1 Level AA by April 24, 2026 (smaller entities by April 24, 2027). If your typing test powers public‑sector programs (schools, workforce agencies, libraries) or you contract with them, your product needs to meet these dates. (govinfo.gov)

Accessibility is also a market reality: about 1.3 billion people (16% of the world) live with significant disabilities, and more than 1 in 4 U.S. adults reported a disability in 2022. Building in accessible patterns helps them complete high‑focus tasks like timed typing tests. (who.int)

What auditors will look for (so you can build to pass)

Translation: ship WCAG 2.1 AA. The checklist below focuses on the success criteria most likely to affect a typing‑test experience.

The prioritized checklist for typing‑test sites

Turn the mandates into UX wins by implementing these five items first.

1) Make the entire test operable with a keyboard

Typing tests are built for keyboards—make sure everything around the test is too.

2) Always show a visible focus indicator

On timed tasks, users must see where they are. Provide a high‑contrast, consistent focus style (SC 2.4.7) and ensure it’s not “designed away” by CSS resets; also verify it meets Non‑Text Contrast (SC 1.4.11) where applicable. (w3.org)

Example CSS:

```css

:where(button, [role="button"], a, input, select, textarea):focus-visible {

outline: 3px solid #1e90ff;

outline-offset: 2px;

}

```

3) Time limits you can pause or extend (and warn before expiry)

WCAG’s Timing Adjustable (SC 2.2.1) lets people finish tasks under time pressure:

4) Announce timers and errors to assistive tech without hijacking focus

People using screen readers should hear important updates even if focus stays in the typing area.

Example markup:

```html

Name

Enter your name before starting.

```

5) RTL and language support (for Arabic, Hebrew, and mixed‑language text)

Typing tests are global. Support right‑to‑left scripts and language changes so assistive tech reads correctly.

Bonus: Respect users’ reduced‑motion preference

Some users experience dizziness or distraction from animation. Honor their OS setting with prefers-reduced-motion. While not a separate WCAG 2.1 AA criterion, it is a published W3C technique and a strong UX win, especially on ticking timers or celebratory confetti after a score. (w3.org)

Example CSS:

```css

@media (prefers-reduced-motion: reduce) {

.countdown { animation: none; transition: none; }

.confetti, .celebration { display: none; }

}

```

A practical 2025–2026 roadmap for teams

Scope check and notes

Bottom line

Build to WCAG 2.1 AA now—specifically: keyboard‑only operability, visible focus, time‑adjustable timers, and assistive‑tech‑friendly status/error messages, with RTL and reduced‑motion support. This hits EN 301 549 Clause 9 for the EU and the ADA Title II web rule in the U.S., and it makes your typing test faster, clearer, and fairer for everyone. (etsi.org)

Article illustration

Ready to improve your typing speed?

Start a Free Typing Test