• Success Criterion 1.4.2
  • Conformance level A

Mute Button That’s Present but Not Easy to Reach

1.4.2 — Audio Control

Scenario

Setting

A recipe site's ingredient list

What’s wrong

"Mute" control present but placed after long content / not keyboard reachable / not first in page code (DOM) order (mechanism effectively unavailable — interacts with 2.1.1).

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

Try to find and activate the mute control immediately after audio starts: if it's placed far down the page, not reachable by keyboard, or not the first interactive element, 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 recipe site's ingredient list, this barrier is gone for screen-reader users competing with page audio — they no longer have to work around this.

Who is affected

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

Learn more