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
- 9 new success criteria in WCAG 2.2
- 5 new criteria relevant to mobile accessibility
- 2.5.8 Target Size is a Level AA requirement
- 2.5.7 Dragging Movements is a Level AA requirement
- Target Size (2.5.8) has been cited in ADA lawsuits
- WCAG 2.2 is required for federal procurement (Section 508)
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:
- ✅ Dragging has single-tap alternatives
- ✅ Users can tap to adjust values instead of dragging
- ✅ Drag-and-drop has alternative controls
- ✅ Sliders can be tapped to adjust values
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:
- ✅ All touch targets are at least 24x24px
- ✅ Buttons, links, form fields meet minimum size
- ✅ Spacing between targets is adequate
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:
- ✅ Focused elements aren't hidden by keyboard
- ✅ Focused elements aren't obscured by overlays
- ✅ Users can see where they are when navigating
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:
- ✅ Focus indicators have 3:1 contrast
- ✅ Focus indicators are at least 2px thick
- ✅ Focus indicators cover the full element
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:
- ✅ Autofill attributes are used correctly
- ✅ Users can autofill common fields (name, address, email)
- ✅ Previously entered information is reused
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:
- 2.5.7 Dragging: Check if sliders and drag interactions have tap alternatives
- 2.5.8 Target Size: Measure touch targets (24x24px minimum)
- 2.4.11 Focus Not Obscured: Check if keyboard covers focused elements
- 2.4.12 Focus Appearance: Check focus indicator contrast and size
- 3.3.7 Redundant Entry: Check autofill support
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
🔍 Check Your WCAG 2.2 Mobile Compliance Today
Free mobile accessibility checker — no signup required.
Free Mobile Accessibility Checker →Internal Links — Mobile Accessibility Resources
- 📱 Free Mobile Accessibility Checker
- 🇺🇸 ADA Compliance Checker
- ⌨️ Keyboard Navigation Checker
- 📢 Screen Reader Checker
- 🎨 Color Contrast Checker
- ⚖️ ADA Title II & III — Full Guide
- 🇪🇺 European Accessibility Act (EAA)
- 📜 Section 508
- 🇨🇦 AODA
- 📖 What is Mobile Accessibility? — Blog #1
- 📖 Mobile Accessibility Checker — Blog #2
- 📖 WCAG Mobile Requirements — Blog #3
- 📖 How to Test Mobile App Accessibility — Blog #4
- 📖 Android Accessibility Testing — Blog #5
- 📖 iOS Accessibility Testing — Blog #6
- 📖 Mobile Touch Target Size — Blog #7
- 📖 Mobile Color Contrast — Blog #8
- 📖 Mobile Accessibility Testing Guide (Existing)
- 📖 Mobile Accessibility Testing Complete Guide (Existing)
💬 Comments (0)