2.5.7Dragging Movements
Operable › 2.5 Input Modalities › WCAG 2.2
Overview
All functionality that uses a dragging movement for operation can be achieved by a single pointer without dragging, unless dragging is essential or the functionality is determined by the user agent and not modified by the author.
Understanding
The W3C Web Accessibility Initiative (WAI) provides detailed guidance on understanding and implementing this criterion. The Understanding document covers the intent, benefits, and supporting techniques in depth.
Read Understanding 2.5.7 on W3C WAITechniques
W3C provides documented techniques for meeting this criterion. Each technique links to the full specification with code examples and test procedures.
How to Test
Identify all drag-and-drop interactions on the page (sortable lists, draggable panels, sliders, resize handles).
Verify each has a non-drag alternative: click buttons, keyboard arrow keys, or a context-menu action.
Test the alternative using only single pointer clicks (no dragging) — confirm the full functionality is achievable.
Exception: drag-only features where dragging is determined by the user agent (native browser scrollbar) are exempt.
Failing & Passing Examples
Fails this criterion
<!-- Sortable list: items can only be reordered by drag and drop;
no keyboard or click-based alternative provided -->
<ul id="sortable">
<li draggable="true">Item 1</li>
<li draggable="true">Item 2</li>
</ul>Passes this criterion
<!-- Drag still works, but move-up/move-down buttons provide
a single-pointer alternative (technique G219) -->
<ul id="sortable">
<li>
Item 1
<button onclick="moveUp(0)" aria-label="Move Item 1 up">↑</button>
<button onclick="moveDown(0)" aria-label="Move Item 1 down">↓</button>
</li>
</ul>How VPATify tests this
Drag-to-reorder lists and drag-to-resize panels exclude users who cannot hold a pointer button down while moving — a click-based alternative (up/down arrows, handles with keyboard support) satisfies this WCAG 2.2 criterion.
VPATify runs automated WCAG checks against every page you scan and flags violations against individual success criteria. Our deep scan combines axe-core, contrast analysis, and structural checks to catch criterion-level failures that single-tool scans miss. See the full testing methodology and features for what's covered at each level.
Run a deep scanWant deeper accessibility insights?
Scan your entire website and generate an official VPAT document — free, in minutes.
Scan Your Site — It's Free