LibWeb: Consider every row when calculating table width

This commit is contained in:
Gingeh 2024-11-05 15:34:35 +11:00 committed by Sam Atkins
commit d1b967bca5
Notes: github-actions[bot] 2024-11-05 10:59:07 +00:00
4 changed files with 88 additions and 15 deletions

View file

@ -0,0 +1,10 @@
<table>
<tr>
<td>1</td>
</tr>
<tr>
<td colspan="2">2</td>
<td>3</td>
</tr>
</table>
PASS (didn't crash)