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

LibWeb: Correct grid-template-areas definition

The spec syntax is `none | <string>+` and `none` is the default.
This commit is contained in:
Sam Atkins 2023-12-07 21:07:21 +00:00 committed by Sam Atkins
parent c3583317ee
commit b569ab72e8

View file

@ -1127,9 +1127,9 @@
},
"grid-template-areas": {
"inherited": false,
"initial": "auto",
"initial": "none",
"valid-identifiers": [
"auto"
"none"
],
"valid-types": [
"string"