frames
must be described.
frames
may not be described.
frameset
element contains 3 or more frame
elements then frameset
element must contain a longdesc
attribute that is a valid URL.
Question | Is the relationship between frames described within the document? |
---|---|
PASS | Relationship between frames is described. |
FAIL | Relationship between frames is not described. |
frameset
.frameset
contains 3 or more frames then check for a longdesc
attribute on the frameset
element.longdesc
attribute to see if it contains a description of the relationship between the frames.frameset
with 3 or more frames is expected to contain a valid longdesc
attribute. The longdesc
attribute must refer to a content that describes the relationship between the frames.longdesc
attribute to the frameset
element.longdesc
attribute refers to a content that describes the relationship between the frames.frameset
has 4 frames and a longdesc
attribute.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #34 - Negative</title> </head> <body> <frameset longdesc="description.html"> <frame /> <frame /> <frame /> <frame /> </frameset> </body> </html>
frameset
has 4 frames and no longdesc
attribute.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #34 - Positive</title> </head> <body> <frameset> <frame /> <frame /> <frame /> <frame /> </frameset> </body> </html>