1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:37:45 +00:00

LibWeb: Fix min-content initialization for row measures

This ensures that min-content contributions from cells with no content
are computed using their calculated values, which are never considered
for min-content before then. The specification diverges from column
measures algorithm, which doesn't use specified width of cells anywhere.
This commit is contained in:
Andi Gallo 2023-06-26 02:48:09 +00:00 committed by Andreas Kling
parent 5aef8f280f
commit 8afe5ce718
4 changed files with 82 additions and 7 deletions

View file

@ -0,0 +1,11 @@
<table style="border-collapse:separate;">
<tr>
<td style="height:6px"></td>
<td rowspan="2" style="border:1px solid black">
<a href="">Test</a>
</td>
</tr>
<tr>
<td style="height:6px"></td>
</tr>
</table>