1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:47:46 +00:00

LibWeb: Take specified height into account for automatic table height

Track table grid height stretched to the specified height and use it to
set the final box height in TFC.

Fixes #19563.
This commit is contained in:
Andi Gallo 2023-06-22 17:22:12 +00:00 committed by Andreas Kling
parent 04a5196a5d
commit 8e52d1125d
4 changed files with 31 additions and 9 deletions

View file

@ -0,0 +1,10 @@
<style>
table {
border: 1px solid black;
height: 100px;
padding: 10px;
}
</style>
<table>
<tr></tr>
</table>