Start scanning free

( Robust / WCAG 4.1.2 )

Frame title is not unique

This check maps to Name, Role, Value. Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Serious Level A WCAG 4.1.2 — Name, Role, Value

What’s wrong

Two or more <iframe> or <frame> elements on the page share the exact same title value.

Why it matters

Screen readers list frames by title so users can jump straight to the one they want. Identical titles make it impossible to tell them apart without opening each one.

How to fix it

Make each frame’s title specific to what it contains.

Before
<iframe src="/chat-widget" title="Widget"></iframe>
<iframe src="/map-widget" title="Widget"></iframe>
After
<iframe src="/chat-widget" title="Live chat support"></iframe>
<iframe src="/map-widget" title="Store location map"></iframe>

Learn more