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
Notes:
sideshowbarker
2024-07-18 01:18:38 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/ca3b86c922b Pull-request: https://github.com/SerenityOS/serenity/pull/10862 Reviewed-by: https://github.com/awesomekling
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
Reference in a new issue