• Success Criterion 1.4.2
  • Conformance level A

Autoplay That Resumes Automatically After Being Paused

1.4.2 — Audio Control

Scenario

Setting

A job board's application form

What’s wrong

Autoplay resumes after user pauses (state not persisted on next page/interaction).

Example

<audio src="intro.mp3" autoplay></audio>

Why it matters

Screen-reader users competing with page audio, and people with auditory sensitivity.

How to test

Pause the audio, then navigate away and back (or interact again): if it resumes playing automatically without the pause choice being remembered, it fails.

How to fix

Audio must not autoplay beyond 3 seconds without an obvious, keyboard-usable pause/stop/volume control.

<audio src="intro.mp3" autoplay controls></audio>

Autoplaying audio past 3 seconds needs a visible, reachable way to pause, stop, or lower its volume.

Outcome

On a job board's application form, this barrier is gone for screen-reader users competing with page audio — they can finish what they came here to do.

Who is affected

Screen-reader users competing with page audio, and people with auditory sensitivity.

Learn more