Inline frames (iframes)
When using iframes, it’s important that all content contained in them is accessible.
Testing
- Identify all
iframes on a page. - Using the keyboard, navigate to each
iframeto ensure content is accessible. - Check the
titleornameattribute of eachiframefor a description of the content.
Examples
Failures
<iframe src="../iframeform/"></iframe>
This
iframedoesn’t have atitleorname.
<iframe src="../iframeform/" name='Provide an address form'></iframe>
This
nameisn’t correct.
Passes
<iframe src="../iframeform/" title='Provide Name Form'></iframe>
Correct
titleis provided. This would also pass if this information was in anameattribute.