1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

LibWeb: Parse shadow values using TokenStream

This commit is contained in:
Sam Atkins 2023-12-07 17:26:25 +00:00 committed by Sam Atkins
parent 3a36b2eea9
commit 4f3136c230
2 changed files with 4 additions and 6 deletions

View file

@ -251,7 +251,7 @@ private:
No,
Yes,
};
RefPtr<StyleValue> parse_shadow_value(Vector<ComponentValue> const&, AllowInsetKeyword);
RefPtr<StyleValue> parse_shadow_value(TokenStream<ComponentValue>&, AllowInsetKeyword);
RefPtr<StyleValue> parse_single_shadow_value(TokenStream<ComponentValue>&, AllowInsetKeyword);
RefPtr<StyleValue> parse_text_decoration_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_text_decoration_line_value(TokenStream<ComponentValue>&);