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

LibWeb: Parse radial-gradient()s

This commit is contained in:
MacDue 2022-11-11 19:12:00 +01:00 committed by Sam Atkins
parent 040dac558e
commit 22a7611e1c
2 changed files with 151 additions and 3 deletions

View file

@ -269,6 +269,7 @@ private:
RefPtr<StyleValue> parse_linear_gradient_function(ComponentValue const&);
RefPtr<StyleValue> parse_conic_gradient_function(ComponentValue const&);
RefPtr<StyleValue> parse_radial_gradient_function(ComponentValue const&);
ParseErrorOr<NonnullRefPtr<StyleValue>> parse_css_value(PropertyID, TokenStream<ComponentValue>&);
RefPtr<StyleValue> parse_css_value(ComponentValue const&);