LibWeb: Correct longhands for grid property

These three are the ones that ShorthandStyleValue uses to serialize
`grid`, so let's use them here.

The spec also mentions `grid-auto-*` properties as being set by `grid`,
but I'll leave that for someone who understands grid better.
This commit is contained in:
Sam Atkins 2023-09-26 15:59:01 +01:00 committed by Andreas Kling
parent 28dbe8eb10
commit 2e3f63fe3b
Notes: sideshowbarker 2024-07-17 02:14:39 +09:00

View file

@ -953,7 +953,9 @@
],
"percentages-resolve-to": "length",
"longhands": [
"grid-template"
"grid-template-areas",
"grid-template-rows",
"grid-template-columns"
]
},
"grid-area": {