LibWeb: Don't distribute excess width to constrained columns

Bring our implementation closer to the specification, which distributes
excess width to unconstrained columns first.
This commit is contained in:
Andi Gallo 2023-06-28 03:06:03 +00:00 committed by Andreas Kling
commit 9cb4fe6a6f
Notes: sideshowbarker 2024-07-16 20:12:13 +09:00
4 changed files with 49 additions and 1 deletions

View file

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