Skip to primary navigation Skip to main content
US flag signifying that this is a United States Federal Government website An official website of the United States Government USDA United State Department of Agriculture Farm Production and Conservation

Frames

When using frames, it's important that all content contained in them is accessible.

Testing

  1. Identify all frames / iframes on a page.
  2. Using the keyboard, navigate to each frame to ensure content is accessible.
  3. Check the title or name attribute of each frame for a description of the content.

Examples

Failure

<iframe src="https://usda-fsa.github.io/fsa-design-system/"></iframe>

Fails: This iframe doesn’t have a title or name.

<iframe src="https://usda-fsa.github.io/fsa-design-system/" name='Provide an address form'></iframe>

This name isn’t correct.

Passes

<iframe src="https://usda-fsa.github.io/fsa-design-system/" title='Provide Name Form'></iframe>

Passes: Correct title is provided. This would also pass if this information was in a name attribute.

Return to top