1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:07:43 +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:
Tim Ledbetter 2024-01-22 21:11:06 +00:00 committed by Andreas Kling
parent 3f0a77e788
commit 7a3fc621bd
3 changed files with 45 additions and 5 deletions

View 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>