WCAG 2.2 Mobile Success Criteria — Complete Guide for App & Web Developers 2026

If you're developing mobile apps or websites, understanding WCAG 2.2 mobile success criteria is essential. WCAG 2.2 was published in October 2023 and introduced several new success criteria specifically for mobile accessibility — including Target Size (2.5.8) and Dragging Movements (2.5.7).

This comprehensive guide covers all WCAG 2.2 mobile success criteria — from new requirements and changes from WCAG 2.1 to how to test and implement them.

📌 Quick Answer — What's New in WCAG 2.2 for Mobile?

WCAG 2.2 introduced 5 new success criteria relevant to mobile accessibility: 2.5.7 Dragging Movements (AA — single-tap alternatives for drag), 2.5.8 Target Size (Minimum) (AA — 24x24px touch targets), 2.4.11 Focus Not Obscured (AA — focus indicators visible), 2.4.12 Focus Appearance (AAA — focus indicator size & contrast), and 3.3.7 Redundant Entry (A — autofill support). These are required for ADA, Section 508, and EAA compliance.

✅ Test Your Mobile Accessibility

Use our free mobile accessibility checker to test your mobile app or website against WCAG 2.1 and 2.2 standards.

Free Mobile Accessibility Checker →

What is WCAG 2.2?

WCAG 2.2 (Web Content Accessibility Guidelines 2.2) was published in October 2023. It builds on WCAG 2.1 and introduces 9 new success criteria — 5 of which are particularly relevant to mobile accessibility.

WCAG 2.2 is the latest version of the international standard for web accessibility. It is referenced by ADA Title III, Section 508, the European Accessibility Act (EAA), and most other accessibility laws.

WCAG 2.2 includes all success criteria from WCAG 2.0 and 2.1, plus new criteria that address emerging needs in mobile accessibility, cognitive accessibility, and user experience.

📊 WCAG 2.2 Mobile Statistics

WCAG 2.2 Mobile Success Criteria — Complete List

1. 2.5.7 — Dragging Movements (Level AA)

All dragging movements must have a single-tap or alternative interaction. Users must be able to complete actions without dragging.

What to Test:

Common Violation: Features only accessible via dragging (e.g., sliders, drag-and-drop).

Fix: Provide alternative controls for drag interactions. For sliders, provide tap-to-adjust functionality.

/* Example: Slider with tap alternatives */
<input type="range" min="0" max="100" value="50">
<div class="slider-controls">
    <button onclick="adjustSlider(-10)">-10</button>
    <span id="sliderValue">50</span>
    <button onclick="adjustSlider(10)">+10</button>
</div>

2. 2.5.8 — Target Size (Minimum) (Level AA)

Touch targets must be at least 24x24 pixels (with exceptions).

What to Test:

Common Violation: Small touch targets that are hard to tap.

Fix: Ensure touch targets meet 24x24px minimum. Consider 44x44pt for iOS and 48x48dp for Android recommendations.

3. 2.4.11 — Focus Not Obscured (Level AA)

Focus indicators must not be hidden by the keyboard or other UI elements.

What to Test:

Common Violation: Keyboard covers focused input fields.

Fix: Ensure keyboard doesn't obscure focused elements. Use scrollIntoView() to bring focused elements into view.

4. 2.4.12 — Focus Appearance (Level AAA)

Focus indicators must have at least 3:1 contrast and be at least 2px thick.

What to Test:

Common Violation: Invisible or low-contrast focus indicators.

Fix: Add visible focus indicators with sufficient contrast.

5. 3.3.7 — Redundant Entry (Level A)

Autofill should reduce redundant data entry where possible.

What to Test:

Common Violation: Users must repeatedly enter the same information.

Fix: Use HTML autofill attributes: <input autocomplete="name">

WCAG 2.2 vs WCAG 2.1 — Mobile Changes

Criterion Level Mobile Impact
2.5.7 Dragging AA ✅ New in WCAG 2.2
2.5.8 Target Size AA ✅ New in WCAG 2.2
2.4.11 Focus Not Obscured AA ✅ New in WCAG 2.2
2.4.12 Focus Appearance AAA ✅ New in WCAG 2.2
3.3.7 Redundant Entry A ✅ New in WCAG 2.2

How to Test WCAG 2.2 Mobile Requirements

Step 1: Use Our Free Mobile Accessibility Checker

Upload your app or enter your mobile website URL in our mobile accessibility checker for automated testing against WCAG 2.2 standards.

Step 2: Manual Testing

Test each WCAG 2.2 criterion manually:

Step 3: Test with Screen Readers

Test with VoiceOver (iOS) and TalkBack (Android) to verify screen reader compatibility.

WCAG 2.2 Mobile Checklist

✅ 2.5.7 — Dragging has single-tap alternatives (AA)

✅ 2.5.8 — Touch targets are 24x24px minimum (AA)

✅ 2.4.11 — Focus is not obscured by keyboard (AA)

✅ 2.4.12 — Focus indicators have 3:1 contrast (AAA)

✅ 3.3.7 — Autofill reduces redundant entry (A)

✅ All WCAG 2.1 mobile requirements are met

✅ Screen readers can access all content

✅ Keyboard navigation works on mobile

✅ Color contrast meets WCAG 2.2 requirements

✅ Tested with VoiceOver and TalkBack

📱 Test Your WCAG 2.2 Mobile Compliance

Free mobile accessibility checker — test your app or website against WCAG 2.1 and 2.2 standards.

Free Mobile Accessibility Checker →

No signup. Instant results. WCAG 2.2 ready.

Frequently Asked Questions — WCAG 2.2 Mobile

❓ What's new in WCAG 2.2 for mobile?
WCAG 2.2 introduced 5 new mobile-related success criteria: 2.5.7 (Dragging Movements), 2.5.8 (Target Size), 2.4.11 (Focus Not Obscured), 2.4.12 (Focus Appearance), and 3.3.7 (Redundant Entry).
❓ What is the minimum touch target size in WCAG 2.2?
WCAG 2.2 requires touch targets to be at least 24x24 pixels (SC 2.5.8). Apple recommends 44x44pt and Google recommends 48x48dp for better usability.
❓ What is WCAG 2.5.7 Dragging Movements?
WCAG 2.5.7 (Level AA) requires that dragging movements have single-tap alternatives. Users must be able to complete actions without dragging.
❓ Is WCAG 2.2 required for ADA compliance?
Yes. Courts are increasingly referencing WCAG 2.2 Level AA as the standard for ADA compliance. Section 508 has also adopted WCAG 2.2 for federal procurement.
❓ How do I test WCAG 2.2 mobile requirements?
Use our free mobile accessibility checker, manual test each criterion, and test with VoiceOver (iOS) and TalkBack (Android).

🔍 Check Your WCAG 2.2 Mobile Compliance Today

Free mobile accessibility checker — no signup required.

Free Mobile Accessibility Checker →

Internal Links — Mobile Accessibility Resources

Share