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

LibWeb: Only size width: auto table-cells by min-content

This commit is contained in:
Simon Wanner 2022-03-28 18:42:49 +02:00 committed by Andreas Kling
parent 3d0178a2f7
commit b92cc3670b
2 changed files with 8 additions and 6 deletions

View file

@ -19,7 +19,7 @@ public:
virtual void run(Box const&, LayoutMode) override;
private:
void calculate_column_widths(Box const& row, Vector<float>& column_widths);
void calculate_column_widths(Box const& row, CSS::Length const& table_width, Vector<float>& column_widths);
void layout_row(Box const& row, Vector<float>& column_widths);
};