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

LibWeb: Parse quotes property using TokenStream

This commit is contained in:
Sam Atkins 2023-12-07 12:38:51 +00:00 committed by Sam Atkins
parent ebad94658a
commit 647d52ff9a
2 changed files with 11 additions and 8 deletions

View file

@ -245,7 +245,7 @@ private:
RefPtr<StyleValue> parse_place_content_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_place_items_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_place_self_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_quotes_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_quotes_value(TokenStream<ComponentValue>&);
enum class AllowInsetKeyword {
No,
Yes,