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

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

View file

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