LibWeb: Map dimension attributes for table elements

This commit is contained in:
Tim Ledbetter 2024-10-01 17:45:10 +01:00 committed by Andreas Kling
commit 140dc95e67
Notes: github-actions[bot] 2024-10-02 09:28:16 +00:00
9 changed files with 61 additions and 8 deletions

View file

@ -55,3 +55,9 @@ Test embed.width = "120." maps to width: 120px
Test embed.height = "100" maps to height: 100px
Test embed.height = " 00110 " maps to height: 110px
Test embed.height = "120." maps to height: 120px
Test tr.height = "100" maps to height: 100px
Test tr.height = " 00110 " maps to height: 110px
Test tr.height = "120." maps to height: 120px
Test col.width = "100" maps to width: 100px
Test col.width = " 00110 " maps to width: 110px
Test col.width = "120." maps to width: 120px