frame
titles
identify the purpose or function of the frame
.
frame
title
may not describe the purpose or function of the frame
.
frame
title
must describe the purpose or function of the frame
.
Question | Does the frame title describe the purpose or function of the frame ? |
---|---|
PASS | frame title describes the purpose or function of the frame . |
FAIL | frame title does not describe the purpose or function of the frame . |
title
attribute of each frame
element in the content.frame
.frame
titles
identify the purpose or function of the frame
.frame's
title
so it describes the purpose or function of the frame
.frame
title
describes the purpose or function of the frame
.
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>A simple frameset document</title> </head> <frameset cols="10%, 90%"> <frame src="nav.html" title="Navigation" /> <frame src="doc.html" title="Content" /> <noframes> <body> <a href="lib.html" title="Library link">Select to go to the electronic library</a> </body> </noframes> </frameset> </html>
frame
title
does not describe the purpose or function of the frame
.
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>A simple frameset document</title> </head> <frameset cols="10%, 90%"> <frame src="nav.html" title="title" /> <frame src="doc.html" title="title" /> <noframes> <body> <a href="lib.html" title="Library link">Select to go to the electronic library</a> </body> </noframes> </frameset> </html>