summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h
diff options
context:
space:
mode:
authorAliaksandr Kalenik <kalenik.aliaksandr@gmail.com>2023-01-14 15:11:58 +0100
committerAndreas Kling <kling@serenityos.org>2023-01-14 19:22:08 +0100
commitb44d977bf868f454dd2384bdc2ec0507e15e466b (patch)
treeaeca088870ff66f6689e6b36c29e28377999d829 /Userland/Libraries/LibWeb/Layout/TableFormattingContext.h
parent80578ead45ff6b36f49b96437da2f85485c010e0 (diff)
downloadserenity-b44d977bf868f454dd2384bdc2ec0507e15e466b.zip
LibWeb: Propagate layout mode of table formatting context to table cells
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/TableFormattingContext.h')
-rw-r--r--Userland/Libraries/LibWeb/Layout/TableFormattingContext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h b/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h
index a709021976..3776ed82c0 100644
--- a/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h
+++ b/Userland/Libraries/LibWeb/Layout/TableFormattingContext.h
@@ -32,7 +32,7 @@ private:
void compute_table_width();
void distribute_width_to_columns();
void determine_intrisic_size_of_table_container(AvailableSpace const& available_space);
- void calculate_row_heights();
+ void calculate_row_heights(LayoutMode layout_mode);
void position_row_boxes();
void position_cell_boxes();