Files
Mozilla/mozilla/layout/html/tests/table/bugs/bug4385.html
(no author) d368a405db This commit was manufactured by cvs2svn to create branch
'MOZILLA_1_8_0_BRANCH'.

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_0_BRANCH@185757 18797224-902f-48f8-a5cc-f745e15eee43
2005-12-07 05:54:01 +00:00

16 lines
502 B
HTML

<TABLE BORDER="1" WIDTH=100%>
<!-- As long as there is a width of the table, the problem exists, but the problem is not dependent upon a specific table width -->
<TR>
<TD COLSPAN="2" WIDTH=100%>A</TD>
</TR>
<!-- The problem appears to be that Mozilla renders the following cells as if there is no COLSPAN=2 tag above. Mozilla DOES render the top correctly but does not realize that the top TD covers 2 cells instead of 1. -->
<TR>
<TD></TD>
<TD>This text is invariably wrapped</TD>
</TR>
</TABLE>