Question | Does this NOFRAMES section contain a text equivalent of the FRAMES section? |
---|---|
PASS | NOFRAMES section contains a text equivalent of the FRAMES section. |
FAIL | NOFRAMES section does not contain a text equivalent of the FRAMES section. |
<!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 #35 - Positive</title> </head> <body> <frameset> <frame src="frame1.html"/> <frame src="frame2.html"/> </frameset> </body> </html>
<!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 #35 - Negative</title> </head> <body> <frameset> <frame src="frame1.html"/> <frame src="frame2.html"/> <noframes>Content of the frames.</noframes> </frameset> </body> </html>