mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:37:46 +00:00
LibWeb: Remove invalid assertion in table fixup
Previously, our code for the fixup of table rows assumed that missing cells in a table row must be sequential. This may not be true if the table contains cells have a rowspan greater than one.
This commit is contained in:
parent
3f0a77e788
commit
7a3fc621bd
3 changed files with 45 additions and 5 deletions
1
Tests/LibWeb/Layout/input/table-fixup-with-rowspan.html
Normal file
1
Tests/LibWeb/Layout/input/table-fixup-with-rowspan.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!DOCTYPE html><table><tbody><tr><td>1</td><td rowspan="3">2</td></tr><tr><td>3</td></tr><tr></tr></tbody></table>
|
Loading…
Add table
Add a link
Reference in a new issue