RESOLVED DUPLICATE of bug 6871496849
A table cell rowspan cannot span more than 8190 rows
https://bugs.webkit.org/show_bug.cgi?id=96849
Summary A table cell rowspan cannot span more than 8190 rows
Julien Chaffraix
Reported 2012-09-14 19:09:59 PDT
Created attachment 164261 [details] Test case See HTMLTableCellElement.cpp: // Clamp rowspan at 8k to match Firefox. static const int maxRowspan = 8190; The limit was bumped up on other browsers including FF and we now have the lowest limit. Not sure why the limit is kept this low the rendering code should be able to handle higher values for rowspans. I haven't tried to determine what would be a better limit and that would need to be investigated.
Attachments
Test case (198.23 KB, text/html)
2012-09-14 19:09 PDT, Julien Chaffraix
no flags
Pravin D
Comment 1 2012-09-15 01:44:25 PDT
FF currently uses 2^16 - 2 as the max value for rowspan. This value is chosen due a limitation in there impl of cell maps. http://mxr.mozilla.org/mozilla-central/source/layout/tables/celldata.h#17
Pablo Flouret
Comment 2 2012-10-03 16:26:38 PDT
There's bug 68714 for this too.
Julien Chaffraix
Comment 3 2012-10-05 17:29:52 PDT
Please just duplicate as appropriate. *** This bug has been marked as a duplicate of bug 68714 ***
Note You need to log in before you can comment on or make changes to this bug.