• Success Criterion 3.3.1
  • Conformance level A

Form That Fails Silently With No Error Message at All

3.3.1 — Error Identification

Scenario

Setting

A weather app's forecast screen

What’s wrong

Submission fails with no error message at all (page reloads silently / button does nothing).

Example

<input class="error" type="text">

Why it matters

Everyone submitting forms — especially screen-reader and color-blind users who miss color-only cues.

How to test

Submit the form with missing/invalid data: if the page reloads silently or nothing visibly happens, it fails.

How to fix

A text error message must identify each field in error and be exposed to assistive technology (announced automatically or focused).

<input class="error" type="text" aria-describedby="err-1">
<span id="err-1">Enter a valid email address</span>

A text message identifying the field and the problem must be exposed to assistive tech, not just shown as a red border.

Outcome

On a weather app's forecast screen, this barrier is gone for everyone submitting forms — they can complete the task without hitting this wall.

Who is affected

Everyone submitting forms — especially screen-reader and color-blind users who miss color-only cues.

Learn more