mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +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.
2 lines
115 B
HTML
2 lines
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>
|