mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 13:47:46 +00:00
LibWeb: Add initial values and longhands to background
definition
There is no specified initial value, but `transparent` is equivalent to setting all the background properties to their defaults.
This commit is contained in:
parent
1fa985b0a6
commit
ca3b86c922
1 changed files with 14 additions and 1 deletions
|
@ -10,7 +10,20 @@
|
|||
"stretch"
|
||||
]
|
||||
},
|
||||
"background": {},
|
||||
"background": {
|
||||
"inherited": false,
|
||||
"initial": "transparent",
|
||||
"longhands": [
|
||||
"background-attachment",
|
||||
"background-clip",
|
||||
"background-color",
|
||||
"background-image",
|
||||
"background-origin",
|
||||
"background-position",
|
||||
"background-repeat",
|
||||
"background-size"
|
||||
]
|
||||
},
|
||||
"background-attachment": {
|
||||
"inherited": false,
|
||||
"initial": "scroll",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue