Iframe has title
April 3, 2023 ยท View on GitHub
Rule Details
<iframe> should have a unique title attribute that identifies the content. The title will help screen reader users determine whether to explore the frame in detail. If an <iframe> contains no meaningful content, hide it by setting aria-hidden="true".
Examples
Incorrect code for this rule ๐
<iframe src="../welcome-video"></iframe>
Correct code for this rule ๐
<!-- good -->
<iframe src="../welcome-video" title="Welcome to GitHub Video" ></iframe>
<!-- also good -->
<iframe aria-hidden="true">
<!-- Meaningless JavaScript code -->
</iframe>