Level 1
12.1 Title each frame to facilitate frame identification and navigation.
I - frames shall be titled
Priority 1
12.1 Title each frame to facilitate frame identification and navigation.
Priority 1
12.1 Title each frame to facilitate frame identification and navigation.
Priority 1
12.1 Title each frame to facilitate frame identification and navigation.
2.4 Navigable: Provide ways to help users navigate, find content, and determine where they are.
Success Criteria 2.4.1 Bypass Blocks (A)
2.4 Navigable: Provide ways to help users navigate, find content, and determine where they are.
Success Criteria 2.4.1 Bypass Blocks (A)
2.4 Navigable: Provide ways to help users navigate, find content, and determine where they are.
Success Criteria 2.4.1 Bypass Blocks (A)
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>