[Webkit-unassigned] [Bug 3297] height property is not honored on table rows
bugzilla-daemon at opendarwin.org
bugzilla-daemon at opendarwin.org
Wed Apr 19 08:21:03 PDT 2006
http://bugzilla.opendarwin.org/show_bug.cgi?id=3297
------- Comment #6 from opendarwin.org at mitzpettel.com 2006-04-19 08:21 PDT -------
The main culprit here is in RenderTableSection::calcRowHeight() at
RenderTableSection.cpp:293:
int pos = rowPos[r + 1] + ch + spacing;
should really be
int pos = rowPos[r] + ch + spacing;
That change alone fixes a few of the table layout tests, but breaks a few
others, so there's further tweaking that needs to be done beyond that.
--
Configure bugmail: http://bugzilla.opendarwin.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list