• Success Criterion 2.2.1
  • Conformance level A

Session Extension Allowed Fewer Than the Required 10 Times

2.2.1 — Timing Adjustable

Scenario

Setting

A video streaming service's show detail page

What’s wrong

Extension allowed fewer than 10 times when the extend route is relied on.

Example

setTimeout(() => logOut(), 60000); // no warning

Why it matters

People who read, type, or move slowly, including many screen-reader users.

How to test

Repeatedly extend the session when warned: it must allow at least 10 extensions — fewer fails.

How to fix

The time limit must be removable or adjustable (to at least 10x) before it starts, or extendable via a warning giving at least 20 seconds to respond with a simple action. setTimeout(() => showExtendSessionPrompt(), 55000); Users need a warning and a way to extend a time limit before it expires, unless the limit is essential (e.g. an auction).

Outcome

On a video streaming service's show detail page, this barrier is gone for people who read — they no longer have to work around this.

Who is affected

People who read, type, or move slowly, including many screen-reader users.

Learn more