mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:47:44 +00:00
LibWeb: Make CSS/Properties.json "logical-aliases-for" an array
This allows us to specify all aliases properties instead of just one.
This commit is contained in:
parent
970a3ef4d8
commit
941092e3ad
2 changed files with 14 additions and 7 deletions
|
@ -1336,8 +1336,10 @@
|
|||
]
|
||||
},
|
||||
"max-inline-size": {
|
||||
"logical-alias-for": "max-width",
|
||||
"__comment": "Also a logical alias for max-height",
|
||||
"logical-alias-for": [
|
||||
"max-width",
|
||||
"max-height"
|
||||
],
|
||||
"initial": "none"
|
||||
},
|
||||
"max-width": {
|
||||
|
@ -1373,8 +1375,10 @@
|
|||
]
|
||||
},
|
||||
"min-inline-size": {
|
||||
"logical-alias-for": "min-width",
|
||||
"__comment": "Also a logical alias for min-height",
|
||||
"logical-alias-for": [
|
||||
"min-width",
|
||||
"min-height"
|
||||
],
|
||||
"initial": "0"
|
||||
},
|
||||
"min-width": {
|
||||
|
@ -1767,7 +1771,7 @@
|
|||
"inherited": false,
|
||||
"initial": "0s",
|
||||
"valid-types": [
|
||||
"time"
|
||||
"time"
|
||||
]
|
||||
},
|
||||
"user-select": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue