RPeraltaJr
11/29/2017 - 8:17 PM

Always Provide a Title for an Iframe

<!-- For iframes that have meaningful content, provide a title using the title attribute. -->
<iframe title="Campus Tour" src="campustourvideo.html"></iframe>

<!-- For iframes that contain non-readable content, like JavaScript, provide a title to pass automated tests, but be sure to hide the content altogether from screen reader users using aria-hidden="true". -->
<iframe title="Intentionally blank" src="noreadablecontent.com" aria-hidden="true"></iframe>