1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27: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

@ -340,6 +340,7 @@ private:
RefPtr<StyleValue> parse_comma_separated_value_list(Vector<ComponentValue> const&, ParseFunction);
RefPtr<StyleValue> parse_simple_comma_separated_value_list(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_filter_value_list_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_background_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_single_background_position_value(TokenStream<ComponentValue>&);
RefPtr<StyleValue> parse_single_background_repeat_value(TokenStream<ComponentValue>&);