[Bug 2606] Displaying validation error on a valid page

http://www.w3.org/Bugs/Public/show_bug.cgi?id=2606

           Summary: Displaying validation error on a valid page
           Product: Validator
           Version: HEAD
          Platform: All
               URL: http://validator.w3.org
        OS/Version: All
            Status: NEW
          Severity: minor
          Priority: P2
         Component: Parser
        AssignedTo: link@pobox.com
        ReportedBy: w3.driestone@surfspamfree.com
         QAContact: www-validator-cvs@w3.org


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>

Received on Thursday, 15 December 2005 21:37:12 UTC