28. Frame is missing a description

4.1.2

Frame description incorrect example

Description: The frame has no ‘title’ attribute or the ‘title’ attribute is empty.

Context: Titles allow users using screen-readers to understand the content of a given iFrame/frame and elect to skip it if it is not relevant. Preventing them from needing to listen to an entire read-through to understand the content.

<!-- <frame src="plantbrochurenames.html" name="names" scrolling="yes"></frame> -->

How to fix it: Provide the frame with the attribute title=”” and add a description of the content in the title.

<!-- <frame src="plantbrochurenames.html" title="Plant names" name="names" scrolling="yes"></frame> -->

Techniques: H64