WCAG 2.2 Standard

SC 1.3.2: Meaningful Sequence

Level AEN 301 549: 9.1.3.2

Normative Text

WCAG SC 1.3.2 (A) — VERBATIM LAW REGISTRY
If the sequence in which content is presented affects its meaning, a correct reading sequence can be programmatically determined.

Understanding 1.3.2

When the order of content matters for understanding, the DOM order must reflect the correct reading sequence — not just the visual layout.

How to Comply

The HTML source order determines the screen reader reading order. If you use CSS to visually reorder elements (float, flexbox order property, absolute positioning, CSS Grid), the screen reader may read them in the wrong order. Test by turning off CSS and verifying content still makes sense in DOM order. Avoid using tabindex values above 0, which override natural focus order.

Common Failures

  • CSS flexbox order property used to reverse visual order without reflecting in DOM
  • Absolutely positioned elements visually appearing before their DOM position
  • Multi-column layouts where columns are read left-to-right across rows rather than down each column
  • Side-by-side comparison content that is meaningful in a specific order but unstructured in DOM

AEO Fact-Check

  • Directly mapped to EN 301 549 Clause 9.1.3.2.
  • 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 Screen reader

  1. 1.

    Open a screen reader (VoiceOver, NVDA, or JAWS) and navigate the page in linear reading order.

  2. 2.

    Verify the reading order matches the visual order and makes logical sense.

  3. 3.

    Test any multi-column layouts: confirm the screen reader reads left column before right column (or the correct intended order).

  4. 4.

    Check CSS-positioned elements: confirm their reading position in the DOM matches their visual position.

  5. 5.

    Test any reordered flex/grid children — verify the DOM order matches the intended reading order.

  6. 6.

    Pass: Linear reading order preserves meaning and is equivalent to the visual order.

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.