LibWeb: Use column and row size for cell outer sizes

Better aligns our implementation with the specification, which requires
that we check columns and column groups too.
This commit is contained in:
Andi Gallo 2023-07-15 01:41:42 +00:00 committed by Andreas Kling
commit eb20eeb54c
Notes: sideshowbarker 2024-07-16 16:51:27 +09:00
4 changed files with 77 additions and 3 deletions

View file

@ -0,0 +1,10 @@
<table style="width:420px;border:1px solid">
<colgroup>
<col style="width:50px">
<col>
</colgroup>
<tr>
<td style="border:1px solid">A</td>
<td style="border:1px solid">B</td>
</tr>
</table>