mirror of
https://github.com/RGBCube/serenity
synced 2025-07-29 14:57:35 +00:00
LibWeb: Add basic parsing of grid shorthand CSS property
Introduces incomplete parsing of grid shorthand property. Only <grid-template> part of syntax is supported for now but it is enough to significantly improve rendering of websites that use this shorthand to define grid :)
This commit is contained in:
parent
1e526af430
commit
ab5b89eb95
6 changed files with 44 additions and 1 deletions
|
@ -940,6 +940,21 @@
|
|||
"string"
|
||||
]
|
||||
},
|
||||
"grid": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
"valid-identifiers": [
|
||||
"auto"
|
||||
],
|
||||
"valid-types": [
|
||||
"length",
|
||||
"percentage",
|
||||
"string"
|
||||
],
|
||||
"longhands": [
|
||||
"grid-template"
|
||||
]
|
||||
},
|
||||
"grid-template": {
|
||||
"inherited": false,
|
||||
"initial": "auto",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue