[Webkit-unassigned] [Bug 49031] tables/mozilla_expected_failures/other/test4.html triggers ASSERT()s from 49019

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Nov 5 16:09:54 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=49031





--- Comment #1 from James Robinson <jamesr at chromium.org>  2010-11-05 16:09:54 PST ---
RenderTable assumes that it only has to deal with one caption as an optimization, but this isn't really valid.  You can actually end up rendering two captions on one table in some cases:

<!DOCTYPE html>
<table>
<CAPTION>one</CAPTION>
<CAPTION style="position:absolute;top:50px;left:50px">two</CAPTION>
</table>

We could forcibly remove all captions other than the first from the render tree, rather than just ignore them in RenderTable::layout(), if the desired rendering here is that only 'one' shows up.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list