frames
have a title
attribute.
frame
missing title
attribute.
frame
element must have a title
attribute.
title
attribute to your frame
element.
<frame title="listing of common birds">
frame
element in your document for the presence of a title
attribute.frames
have a title
attribute.title
attribute to the frame
element.frame
has a title
attribute.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>ATRC Testfile - Check #31.2 - Negative</title> </head> <frameset > <frame src="birds.html" title="main content" /> </frameset> </html>
frame
has no title
attribute.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>ATRC Testfile - Check #31.1 - Positive</title> </head> <frameset > <frame src="birds.html"/> </frameset> </html>