mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:07:46 +00:00
LibWeb: Correct grid-template-areas definition
The spec syntax is `none | <string>+` and `none` is the default.
This commit is contained in:
parent
c3583317ee
commit
b569ab72e8
1 changed files with 2 additions and 2 deletions
|
@ -1127,9 +1127,9 @@
|
|||
},
|
||||
"grid-template-areas": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
"initial": "none",
|
||||
"valid-identifiers": [
|
||||
"auto"
|
||||
"none"
|
||||
],
|
||||
"valid-types": [
|
||||
"string"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue