mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12: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:
parent
c3583317ee
commit
b569ab72e8
1 changed files with 2 additions and 2 deletions
|
@ -1127,9 +1127,9 @@
|
||||||
},
|
},
|
||||||
"grid-template-areas": {
|
"grid-template-areas": {
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
"initial": "auto",
|
"initial": "none",
|
||||||
"valid-identifiers": [
|
"valid-identifiers": [
|
||||||
"auto"
|
"none"
|
||||||
],
|
],
|
||||||
"valid-types": [
|
"valid-types": [
|
||||||
"string"
|
"string"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue