This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 2606 - Displaying validation error on a valid page
Summary: Displaying validation error on a valid page
Status: RESOLVED INVALID
Alias: None
Product: Validator
Classification: Unclassified
Component: Parser (show other bugs)
Version: HEAD
Hardware: All All
: P2 minor
Target Milestone: ---
Assignee: Terje Bless
QA Contact: qa-dev tracking
URL: http://validator.w3.org
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-15 21:37 UTC by Jon Sweet
Modified: 2005-12-15 21:40 UTC (History)
0 users

See Also:


Attachments
Example of a valid file that the system claims to be invalid (667 bytes, text/html)
2005-12-15 21:37 UTC, Jon Sweet
Details

Description Jon Sweet 2005-12-15 21:37:05 UTC
System claims that <tfoot> is not valid, although it is.
Example with the following code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
		<meta http-equiv="content-type" content="text/html; charset=utf-8" />
		<meta http-equiv="Content-Language" content="en-us" />
		<title>Edit Programs</title>
	</head>
	<body>
		<table class="listing">
			<tbody id="program_entry">
				<tr class="h0">
					<td>Title</td>
					<td>Other</td>
					<td>Section</td>
					<td>Data</td>
				</tr>
			</tbody>
			<tfoot>
				<tr class="h0">
					<td colspan="4">
						Value
					</td>
				</tr>
			</tfoot>
		</table>
	</body>
</html>
Comment 1 Jon Sweet 2005-12-15 21:37:56 UTC
Created attachment 397 [details]
Example of a valid file that the system claims to be invalid
Comment 2 Bj 2005-12-15 21:40:47 UTC
You have to put the <tfoot> before the <tbody>.