LibWeb: Support cellpadding attribute on table elements

This commit is contained in:
implicitfield 2023-11-19 22:19:32 +04:00 committed by Andreas Kling
commit 00c1da8cbc
Notes: sideshowbarker 2024-07-16 21:51:02 +09:00
5 changed files with 75 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<!doctype html><style>
table {
height: 200px;
border: 1px solid black;
}
</style><table cellpadding="60"><td valign=top>top</td><td valign=middle>middle</td><td valign=bottom>bottom</td>