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

LibWeb: Use cell width instead available width to compute height

Overall available width should only affect later stages of the table
layout algorithm and have no impact on cell measures.
This commit is contained in:
Andi Gallo 2023-08-12 23:48:36 +00:00 committed by Alexander Kalenik
parent 2a067b5601
commit bc8c2b2bc2
4 changed files with 42 additions and 42 deletions

View file

@ -39,7 +39,7 @@ private:
CSSPixels compute_capmin();
void calculate_row_column_grid(Box const&);
void compute_constrainedness();
void compute_cell_measures(AvailableSpace const& available_space);
void compute_cell_measures();
void compute_outer_content_sizes();
template<class RowOrColumn>
void initialize_table_measures();