mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 22:35:08 +00:00

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.
1 line
115 B
HTML
1 line
115 B
HTML
<!DOCTYPE html><table><tbody><tr><td>1</td><td rowspan="3">2</td></tr><tr><td>3</td></tr><tr></tr></tbody></table>
|