Skip to main content
WCAG success criterion · Operable

2.5.2 Pointer Cancellation

Guideline 2.5 Input Modalities. Level A, part of WCAG 2.1 and later.

ADA compliance guide

What this criterion requires

Single-pointer actions must not complete on the down-event alone: users must be able to abort by moving away before release, or the action must be undoable.

Who it helps

People with tremor or limited precision who press the wrong spot.

Example: fails vs passes

Fails
btn.addEventListener('mousedown', deleteItem);
Passes
btn.addEventListener('click', deleteItem); /* fires on release; sliding off aborts */

Down-event activation gives no chance to abort a mistaken press.

How to meet and fix it

Common failures auditors find

Automated scanning catches a share of these instantly - run a free check - and a manual audit covers the judgement calls a tool cannot make.

Sources

Last updated . Reviewed by the EqualWeb accessibility team.

Does your site pass 2.5.2?

Run a free automated check now, or have certified IAAP/CPWA auditors test every criterion and document the result.

Book a meeting Start Free Trial