Missing Iframe Title Check
Description
The “Missing Iframe Title Check” evaluates whether there is any <iframe> element without the title attribute.
Example outcome
I found 1 <iframe> element without title.
Impact
- Visual Impairments: Screen readers cannot describe iframe content, leading to confusion
- Motor Impairments: If using keyboard nav or switch control, they can’t decide to skip or enter the iframe content easily
- Cognitive Disabilities: Lack of clear labeling makes it harder to understand content structure
Fixes
To address <iframe> elements without a title attribute:
- Locate the
<iframe>element without a title. - Add the
titleattribute providing an accurate description of the embedded content. - Make sure the
titleis unique among other<iframe>elements in the same page unless both point to the same source.