LibWeb: Implement grid-template function fit-content()

This commit is contained in:
Edwin Hoksberg 2024-07-22 22:49:52 +02:00 committed by Andreas Kling
commit e5deaa1c07
Notes: github-actions[bot] 2024-07-25 11:13:31 +00:00
10 changed files with 211 additions and 7 deletions

View file

@ -250,6 +250,7 @@ private:
Optional<Gfx::UnicodeRange> parse_unicode_range(StringView);
Vector<Gfx::UnicodeRange> parse_unicode_ranges(TokenStream<ComponentValue>&);
Optional<GridSize> parse_grid_size(ComponentValue const&);
Optional<GridFitContent> parse_fit_content(Vector<ComponentValue> const&);
Optional<GridMinMax> parse_min_max(Vector<ComponentValue> const&);
Optional<GridRepeat> parse_repeat(Vector<ComponentValue> const&);
Optional<ExplicitGridTrack> parse_track_sizing_function(ComponentValue const&);