1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 14:57:35 +00:00

LibWeb+Meta: Parse the backdrop-filter CSS property

Note: The parsing and style value completely ignores the SVG filters
part of the spec for now... That's a yak for another day :^)
This commit is contained in:
MacDue 2022-09-15 08:31:17 +01:00 committed by Sam Atkins
parent 980c92e9b5
commit d1b99282d8
4 changed files with 203 additions and 0 deletions

View file

@ -20,6 +20,17 @@
"appearance"
]
},
"backdrop-filter": {
"affects-layout": false,
"inherited": false,
"initial": "none",
"valid-types": [
"filter-value-list"
],
"valid-identifiers": [
"none"
]
},
"background": {
"affects-layout": false,
"inherited": false,