The WCAG 2.2 New Criteria Checker is built for teams moving from WCAG 2.1 to 2.2. Rather than re-running a full audit, it focuses only on the six success criteria that 2.2 added, so you can see at a glance which new requirements your markup already meets and which need attention.
How it works
- Parse the HTML. The snippet is parsed locally and the tool collects interactive controls, fixed and sticky elements, draggable elements, form fields, and authentication inputs.
- Run one heuristic per criterion. Each of the six criteria gets a targeted static check — for example, fixed or sticky elements are flagged for Focus Not Obscured, inline target sizes under 24px fail Target Size, and password fields that block paste fail Accessible Authentication.
- Report honestly. Results are Pass, Review, Fail, or Manual check. Criteria that genuinely cannot be decided from static HTML, such as whether a focused control is visually covered, are marked Manual check rather than guessed.
What it can and cannot see
- It can see inline styles, attributes like
draggableandonpaste, repeated field names, and the presence of help links. - It cannot see external CSS, computed layout, focus visuals, or runtime behaviour. Treat clean results on the visual criteria (2.4.11/2.4.12, 2.5.8) as “no problem found inline”, not a guarantee.
Tips and notes
- Give every interactive target at least 24 by 24 CSS pixels, or enough spacing to qualify for the 2.5.8 exception.
- Never block paste on password fields — it breaks password managers and trips 3.3.8.
- Keep your help and contact links in the same relative location on every page to satisfy 3.2.6 Consistent Help.