1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:37:34 +00:00

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
parent 6bd4d44f73
commit 9cb4fe6a6f
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>