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)

*Correction:*


    <ul>
      <li>Product 1</li>
      <li>Product 2</li>
      <li>Product 3</li>
    </ul>

#### 5. Missing Alt Text for Informative Images (Web)

*Correction:*


    <img src="sales-chart.png" alt="Bar chart showing a 20% increase in sales from Q1 to Q2.">

How to Test for WCAG 1.3.1 Compliance

#### Manual Testing Steps

  1. Keyboard Navigation: Tab through your application.
  1. Screen Reader Testing: Use a screen reader (NVDA on Windows, VoiceOver on macOS/iOS, TalkBack on Android).
  1. Inspect Code: Use browser developer tools (Chrome DevTools, Firefox Developer Tools) to inspect the HTML structure.

#### Automated Tools

#### Mobile-Specific Considerations

How to Fix Violations

How SUSA Checks WCAG 1.3.1

SUSA autonomously explores your application, performing dynamic testing across various user personas.

Test Your App Autonomously

Upload your APK or URL. SUSA explores like 10 real users — finds bugs, accessibility violations, and security issues. No scripts.

Try SUSA Free