• Success Criterion 3.3.1
  • Conformance level A

Error Toast That Disappears Before It Can Be Read

3.3.1 — Error Identification

Scenario

Setting

A project-management tool's task board

What’s wrong

Toast errors disappearing before assistive technology users reach them (identification effectively absent — interacts 2.2.1).

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 invalid data with a screen reader running: if a toast error appears and disappears before the screen reader user can navigate to it, 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 project-management tool's task board, 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