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

LibWeb: Parse grid-area property using TokenStream

This commit is contained in:
Sam Atkins 2023-12-07 17:40:14 +00:00 committed by Sam Atkins
parent a16b35a755
commit bbbd9c14ac
2 changed files with 5 additions and 4 deletions

View file

@ -265,7 +265,7 @@ private:
RefPtr<StyleValue> parse_grid_track_placement(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_grid_track_placement_shorthand_value(PropertyID, TokenStream<ComponentValue>&);
RefPtr<StyleValue> parse_grid_template_areas_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_grid_area_shorthand_value(Vector<ComponentValue> const&);
RefPtr<StyleValue> parse_grid_area_shorthand_value(TokenStream<ComponentValue>&);
RefPtr<StyleValue> parse_grid_shorthand_value(Vector<ComponentValue> const&);
OwnPtr<CalculationNode> parse_a_calculation(Vector<ComponentValue> const&);