Skip to content
atlookup

Embedded Frame missing Accessible Name

An <iframe> without a title attribute is announced by screen readers as "frame" with no context — a WCAG failure.

notice Impact: medium WCAG 4.1.2 (Level A) IFRAME_TITLE_MISSING 2 min read Updated

Why it matters

An <iframe> without a title attribute is announced by screen readers as "frame" with no context — a WCAG failure.

Address when convenient — notices usually mark a polish opportunity rather than a defect. Estimated SEO impact: medium — measurable effect on click-through or relevance.

How to fix

  • Add title="Short description" to every <iframe>
  • Example: title="YouTube video: How to set up SSL"

Common causes

If the rule is firing across many pages, the root cause is almost always one of these:

  • Mixed-content sub-resources from before HTTPS migration that escaped the rewrite.
  • CDN or upstream proxy strips a security header that was set at the origin.
  • Legacy redirects send HTTPS traffic through HTTP first.
  • Test/staging hostnames leak into production HTML via hard-coded URLs.

Anti-patterns to avoid

Even with the best intentions, these "fixes" make the issue worse — recognise them so you don't ship them:

  • Mixed HTTP/HTTPS resources after migration.
  • Self-signed or expired certificates on production.
  • Long-lived secrets in client-rendered HTML or JS bundles.

How atlookup detects this

Our crawler renders each page with a real headless browser, then inspects HTTPS state, response headers, mixed content, and certificate validity. Pages where the rule fires for embedded frame missing accessible name are flagged on the report.

If you'd like to see this rule fire on your own site, run a free 60-second audit — every page is reported with the exact lines that triggered it.

Tools to verify the fix

Once you've applied the fix, double-check with these external validators:

Frequently asked questions

Why does Embedded Frame Missing Accessible Name matter for SEO?

An <iframe> without a title attribute is announced by screen readers as "frame" with no context — a WCAG failure.

How do I fix embedded frame missing accessible name?

Add title="Short description" to every <iframe> Example: title="YouTube video: How to set up SSL"

Is this a critical SEO issue?

Address when convenient — notices usually mark a polish opportunity rather than a defect. Estimated SEO impact: medium — measurable effect on click-through or relevance.

How does atlookup detect embedded frame missing accessible name?

Our crawler renders each page with a real headless browser, then inspects HTTPS state, response headers, mixed content, and certificate validity. Pages where the rule fires for embedded frame missing accessible name are flagged on the report.

Does this affect accessibility?

Yes. This issue maps to WCAG 4.1.2 (Level A). Fixing it improves both SEO ranking signals and the experience for users on assistive technology.