[Webkit-unassigned] [Bug 13670] Table misrender when one of the TDs has width=100%

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Aug 9 15:59:26 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=13670





------- Comment #5 from mitz at webkit.org  2007-08-09 15:59 PDT -------
The problem can be "made to go away" for most practical cases (i.e. as long as
the container is not extremely wide) by taking advantage of the new support for
non-integral percentage values. Currently anything above 99% is clamped down to
99%, but this can be changed to a much higher threshold. In
AutoTableLayout::calcPrefWidths:

maxNonPercent = (maxNonPercent * 100 + 50) * percentScaleFactor /
max(remainingPercent, percentScaleFactor);

can be changed to say 1 in the end instead of percentScaleFactor (currently
128), bringing the threshold to >99.99%.

I will try to post a patch soon.


-- 
Configure bugmail: http://bugs.webkit.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