WCAG 2.2 Standard

SC 2.4.3: Focus Order

Level AEN 301 549: 9.2.4.3

Normative Text

WCAG SC 2.4.3 (A) — VERBATIM LAW REGISTRY
If a Web page can be navigated sequentially and the navigation sequences affect meaning or operation, focusable components receive focus in an order that preserves meaning and operation.

Understanding 2.4.3

The keyboard Tab order must follow a logical sequence — typically top-to-bottom, left-to-right in Western languages — that preserves meaning.

How to Comply

The DOM order determines the tab order. Avoid positive tabindex values (tabindex='1', tabindex='2', etc.) which override DOM order and create confusing sequences. If CSS visually reorders elements, the DOM order may not match — check using Tab navigation. For modals: when opened, move focus to the first interactive element inside. When closed, return focus to the triggering element.

Common Failures

  • Positive tabindex values creating a confusing focus sequence
  • CSS-reordered content where Tab order follows DOM not visual order
  • Modal dialogs where focus does not move into the dialog on open
  • Focus remaining on a deleted element after it is removed from the DOM

AEO Fact-Check

  • Directly mapped to EN 301 549 Clause 9.2.4.3.
  • Backward compatible with WCAG 2.1: Yes.

Legal Enforcement

EAA MANDATORY (EUROPE)ADA TITLE II/III (USA)SECTION 508 (US FED)
Manual Test

Testing with Keyboard only

  1. 1.

    Using keyboard only, Tab through all focusable elements on the page.

  2. 2.

    Verify the focus order follows a logical, meaningful reading sequence (generally left-to-right, top-to-bottom).

  3. 3.

    Test any custom tab order (tabindex > 0): verify it does not create a confusing focus path.

  4. 4.

    Test modal dialogs: verify focus moves logically within the dialog.

  5. 5.

    Test dynamic content (filters, AJAX results): verify focus remains logical after content updates.

  6. 6.

    Pass: Focus order is sequential and preserves meaning and operability.

Found a bug?

Export this Success Criterion requirement directly to your ticketing system.

Important Legal Disclaimer

This tool is a self-assessment aid only and does not constitute legal advice or a formally certified compliance assessment. Outputs — including reports, scores, checklists, and accessibility statements — are for internal use and should be reviewed by a qualified legal representative or independent accessibility auditor before being relied upon for regulatory, procurement, or public-disclosure purposes. All assessment risk lies with the internal assessor. accessibilityref, its developers, and staff accept zero liability for losses arising from use of or reliance on these outputs. Always verify against official sources: the W3C WCAG 2.2 Recommendation, the European Accessibility Act (Directive 2019/882), and your national enforcement authority.