Closed
Bug 37439
Opened 25 years ago
Closed 25 years ago
height of table not properly calculated when nested into a cell spanning rows
Categories
(Core :: Layout: Tables, defect, P3)
Tracking
()
People
(Reporter: muzzle, Assigned: karnaze)
Details
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 95)
BuildID: 2000030708
When you nest a table of height 100% in a cell that spans more
than one row, the inner table does not expand out to entirely
fill the cell. Bug exists in all versions of Netscape and Mozilla.
Reproducible: Always
Steps to Reproduce:
Use below HTML
<P>The two inner tables (the ones containing "hello") are both
height=100%, however the first one doesn't expand to full height -- probably
because of the ROWSPAN.</p>
<TABLE BORDER>
<TR>
<TD HEIGHT=50>row 1</TD>
<TD ROWSPAN=2>
<TABLE BORDER HEIGHT=100% WIDTH=100%><TR><TD>hello</TD></TR></TABLE>
</TD>
</TR>
<TR>
<TD HEIGHT=50>row 2</TD>
</TR>
</TABLE>
<BR>
<TABLE BORDER HEIGHT=100>
<TR>
<TD HEIGHT=100>row 1</TD>
<TD>
<TABLE BORDER HEIGHT=100% WIDTH=100%><TR><TD>hello</TD></TR></TABLE>
</TD>
</TR>
</TABLE>
Changing component
Assignee: troy → karnaze
Component: Layout → HTMLTables
QA Contact: petersen → chrisd
Comment 2•25 years ago
|
||
*** This bug has been marked as a duplicate of 32205 ***
Status: UNCONFIRMED → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•