WCAG 1.3.1 Info and Relationships — Testing Guide for Mobile & Web Apps

WCAG 1.3.1, "Info and Relationships," is a foundational accessibility criterion. It mandates that information, structure, and relationships conveyed through presentation can be programmatically determ

March 18, 2026 · 6 min read · WCAG Guides

Ensuring Information and Relationships: A Practical Guide to WCAG 1.3.1 Compliance

WCAG 1.3.1, "Info and Relationships," is a foundational accessibility criterion. It mandates that information, structure, and relationships conveyed through presentation can be programmatically determined or are available in text. This means the underlying code must clearly define the purpose and connections between elements, not just how they look.

What WCAG 1.3.1 Requires

In plain terms, this means:

Why WCAG 1.3.1 Matters

This criterion is critical for users who rely on assistive technologies.

Compliance with WCAG 1.3.1 is not just about adhering to standards; it's about creating inclusive digital experiences. In regions like the EU, directives like the European Accessibility Act (EAA) mandate compliance for many digital services. Similarly, the Americans with Disabilities Act (ADA) in the US requires digital accessibility, and WCAG is the de facto standard for meeting these obligations.

Common Violations and Examples

#### 1. Unassociated Form Labels (Web & Mobile)

*Correction:*


    <label for="email">Email Address</label>
    <input type="email" id="email">

#### 2. Incorrect Heading Structure (Web)

*Correction:*


    <h1>Main Title</h1>
    <h2>Section Title</h2>
    <h3>Subsection Title</h3>
    <p>Content...</p>
    <h2>Another Section</h2>

#### 3. Improper Table Markup (Web)

*Correction:*


    <table>
      <thead>
        <tr>
          <th>Name</th>
          <th>Age</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Alice</td>
          <td>30</td>
        </tr>
      </tbody>
    </table>

#### 4. Lack of Relationship Indicators in Lists (Web & Mobile)