Closed
Bug 3263
Opened 26 years ago
Closed 26 years ago
Part of these tables do not display
Categories
(Core :: Layout: Tables, defect, P2)
Tracking
()
VERIFIED
FIXED
People
(Reporter: ian, Assigned: rickg)
References
()
Details
Only the THEAD part of these tables displays! (Works fine in IE4.)
Updated•26 years ago
|
Assignee: karnaze → rickg
Comment 1•26 years ago
|
||
I have a simpler example below which illustrates the problem. There is no
</thead> for the <thead> and the parser is putting the <tbody> as a child of the
<thead>. Dumping the content model verifies this. <thead>, <tfoot>, <tbody>
should be closed when another <thead>, <tfoot>, <tbody> are encountered.
<html>
<body>
<TABLE border=1>
<THEAD>
<TR><TH>thead cell
<tbody>
<TR><TD>tbody cell
</TABLE>
</body>
</html>
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
This is fixed by an improvement to the CNavDTD handling of tbody in the presence
of a thead.
Reporter | ||
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•