mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 14:57:35 +00:00
LibWeb: Parse grid-column and grid-row CSS values
This commit is contained in:
parent
44d08b81b7
commit
7bb3a8d646
5 changed files with 131 additions and 0 deletions
|
@ -694,6 +694,20 @@
|
|||
"normal"
|
||||
]
|
||||
},
|
||||
"grid-column": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
"valid-identifiers": [
|
||||
"auto"
|
||||
],
|
||||
"valid-types": [
|
||||
"string"
|
||||
],
|
||||
"longhands": [
|
||||
"grid-column-end",
|
||||
"grid-column-start"
|
||||
]
|
||||
},
|
||||
"grid-column-end": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
|
@ -714,6 +728,20 @@
|
|||
"string"
|
||||
]
|
||||
},
|
||||
"grid-row": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
"valid-identifiers": [
|
||||
"auto"
|
||||
],
|
||||
"valid-types": [
|
||||
"string"
|
||||
],
|
||||
"longhands": [
|
||||
"grid-row-end",
|
||||
"grid-row-start"
|
||||
]
|
||||
},
|
||||
"grid-row-end": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue