1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:28:11 +00:00

LibWeb: Fix regression in definite grid row heights

Fixes a row height bug when a grid item in a row has a definite height.
This commit is contained in:
martinfalisse 2023-04-01 19:09:19 +02:00 committed by Andreas Kling
parent e65f4b3dc5
commit 6f52272d34
4 changed files with 76 additions and 5 deletions

View file

@ -145,6 +145,8 @@ private:
void initialize_grid_tracks(Box const&, AvailableSpace const&, int column_count, int row_count);
void calculate_sizes_of_columns(Box const&, AvailableSpace const&);
void calculate_sizes_of_rows(Box const&);
CSSPixels content_based_minimum_height(GridItem const&, Box const& parent_box);
};
}