Subject: Re: CVS commit: htdocs/developers/features
To: Ognyan Kulev <ogi@fmi.uni-sofia.bg>
From: Thomas Klausner <wiz@netbsd.org>
List: www-changes
Date: 03/02/2004 13:05:54
On Tue, Mar 02, 2004 at 02:01:34PM +0200, Ognyan Kulev wrote:
> Their behaviour is correct, I think.  thead, tbody and tfoot are 
> processed linearly by design and you can have multiple thead and tfoot.
> 
> The algorithm is: when page is breaked in tbody, output the last tfoot, 
> go to next page, output the last thead and continue the tbody.

I don't think that they should display the following code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD><TITLE>tfoot test</TITLE></HEAD>
<BODY>
<TABLE>
<THEAD><TR><TH>Header</TH></TR></THEAD>
<TFOOT><TR><TH>Footer</TH></TR></TFOOT>
<TBODY><TR><TH>Body</TH></TR></TBODY>
</BODY>
</HTML>

as:
Header
Footer
Body

And mozilla displays it correctly as
Header
Body
Footer

 Thomas