TableFormattingContext.cpp 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/DOM/Node.h>
  7. #include <LibWeb/HTML/BrowsingContext.h>
  8. #include <LibWeb/Layout/Box.h>
  9. #include <LibWeb/Layout/InlineFormattingContext.h>
  10. #include <LibWeb/Layout/TableBox.h>
  11. #include <LibWeb/Layout/TableCellBox.h>
  12. #include <LibWeb/Layout/TableFormattingContext.h>
  13. #include <LibWeb/Layout/TableRowBox.h>
  14. #include <LibWeb/Layout/TableRowGroupBox.h>
  15. struct GridPosition {
  16. size_t x;
  17. size_t y;
  18. };
  19. inline bool operator==(GridPosition const& a, GridPosition const& b)
  20. {
  21. return a.x == b.x && a.y == b.y;
  22. }
  23. namespace AK {
  24. template<>
  25. struct Traits<GridPosition> : public GenericTraits<GridPosition> {
  26. static unsigned hash(GridPosition const& key)
  27. {
  28. return pair_int_hash(key.x, key.y);
  29. }
  30. };
  31. }
  32. namespace Web::Layout {
  33. TableFormattingContext::TableFormattingContext(LayoutState& state, TableBox const& root, FormattingContext* parent)
  34. : FormattingContext(Type::Table, state, root, parent)
  35. {
  36. }
  37. TableFormattingContext::~TableFormattingContext() = default;
  38. void TableFormattingContext::calculate_row_column_grid(Box const& box)
  39. {
  40. // Implements https://html.spec.whatwg.org/multipage/tables.html#forming-a-table
  41. HashMap<GridPosition, bool> grid;
  42. size_t x_width = 0, y_height = 0;
  43. size_t x_current = 0, y_current = 0;
  44. auto process_row = [&](auto& row) {
  45. if (y_height == y_current)
  46. y_height++;
  47. x_current = 0;
  48. while (x_current < x_width && grid.contains(GridPosition { x_current, y_current }))
  49. x_current++;
  50. for (auto* child = row.first_child(); child; child = child->next_sibling()) {
  51. if (is<TableCellBox>(*child)) {
  52. Box* box = static_cast<Box*>(child);
  53. if (x_current == x_width)
  54. x_width++;
  55. const size_t colspan = static_cast<TableCellBox*>(child)->colspan();
  56. const size_t rowspan = static_cast<TableCellBox*>(child)->rowspan();
  57. if (x_width < x_current + colspan)
  58. x_width = x_current + colspan;
  59. if (y_height < y_current + rowspan)
  60. y_height = y_current + rowspan;
  61. for (size_t y = y_current; y < y_current + rowspan; y++)
  62. for (size_t x = x_current; x < x_current + colspan; x++)
  63. grid.set(GridPosition { x, y }, true);
  64. m_cells.append(Cell { *box, x_current, y_current, colspan, rowspan });
  65. x_current += colspan;
  66. }
  67. }
  68. m_rows.append(Row { row });
  69. y_current++;
  70. };
  71. box.template for_each_child_of_type<TableRowGroupBox>([&](auto& row_group_box) {
  72. row_group_box.template for_each_child_of_type<TableRowBox>([&](auto& row) {
  73. process_row(row);
  74. return IterationDecision::Continue;
  75. });
  76. });
  77. box.template for_each_child_of_type<TableRowBox>([&](auto& row) {
  78. process_row(row);
  79. return IterationDecision::Continue;
  80. });
  81. m_columns.resize(x_width);
  82. }
  83. void TableFormattingContext::compute_table_measures()
  84. {
  85. size_t max_cell_column_span = 1;
  86. for (auto& cell : m_cells) {
  87. auto width_of_containing_block = m_state.get(*table_wrapper().containing_block()).content_width();
  88. auto& computed_values = cell.box->computed_values();
  89. CSSPixels padding_left = computed_values.padding().left().to_px(cell.box, width_of_containing_block);
  90. CSSPixels padding_right = computed_values.padding().right().to_px(cell.box, width_of_containing_block);
  91. auto is_left_most_cell = cell.column_index == 0;
  92. auto is_right_most_cell = cell.column_index == m_columns.size() - 1;
  93. auto should_hide_borders = cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Collapse;
  94. CSSPixels border_left = should_hide_borders && !is_left_most_cell ? 0 : computed_values.border_left().width;
  95. CSSPixels border_right = should_hide_borders && !is_right_most_cell ? 0 : computed_values.border_right().width;
  96. CSSPixels width = computed_values.width().to_px(cell.box, width_of_containing_block);
  97. auto cell_intrinsic_offsets = padding_left + padding_right + border_left + border_right;
  98. auto min_content_width = calculate_min_content_width(cell.box);
  99. auto max_content_width = calculate_max_content_width(cell.box);
  100. CSSPixels min_width = min_content_width;
  101. if (!computed_values.min_width().is_auto())
  102. min_width = max(min_width, computed_values.min_width().to_px(cell.box, width_of_containing_block));
  103. CSSPixels max_width = computed_values.width().is_auto() ? max_content_width.value() : width;
  104. if (!computed_values.max_width().is_none())
  105. max_width = min(max_width, computed_values.max_width().to_px(cell.box, width_of_containing_block));
  106. auto computed_width = computed_values.width();
  107. if (computed_width.is_percentage()) {
  108. m_columns[cell.column_index].type = ColumnType::Percent;
  109. m_columns[cell.column_index].percentage_width = max(m_columns[cell.column_index].percentage_width, computed_width.percentage().value());
  110. } else if (computed_width.is_length()) {
  111. m_columns[cell.column_index].type = ColumnType::Pixel;
  112. }
  113. cell.min_width = min_width + cell_intrinsic_offsets;
  114. cell.max_width = max(max(width, min_width), max_width) + cell_intrinsic_offsets;
  115. max_cell_column_span = max(max_cell_column_span, cell.column_span);
  116. }
  117. for (auto& cell : m_cells) {
  118. if (cell.column_span == 1) {
  119. m_columns[cell.column_index].min_width = max(m_columns[cell.column_index].min_width, cell.min_width);
  120. m_columns[cell.column_index].max_width = max(m_columns[cell.column_index].max_width, cell.max_width);
  121. }
  122. }
  123. for (size_t current_column_span = 2; current_column_span < max_cell_column_span; current_column_span++) {
  124. // https://www.w3.org/TR/css-tables-3/#min-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  125. Vector<Vector<CSSPixels>> cell_min_contributions_by_column_index;
  126. cell_min_contributions_by_column_index.resize(m_columns.size());
  127. // https://www.w3.org/TR/css-tables-3/#max-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  128. Vector<Vector<CSSPixels>> cell_max_contributions_by_column_index;
  129. cell_max_contributions_by_column_index.resize(m_columns.size());
  130. for (auto& cell : m_cells) {
  131. if (cell.column_span == current_column_span) {
  132. // Define the baseline max-content width as the sum of the max-content widths based on cells of span up to N-1 of all columns that the cell spans.
  133. CSSPixels baseline_max_content_width = 0;
  134. auto cell_start_column_index = cell.column_index;
  135. auto cell_end_column_index = cell.column_index + cell.column_span;
  136. for (auto column_index = cell_start_column_index; column_index < cell_end_column_index; column_index++) {
  137. baseline_max_content_width += m_columns[column_index].max_width;
  138. }
  139. // The contribution of the cell is the sum of:
  140. // the min-content width of the column based on cells of span up to N-1
  141. auto cell_min_contribution = m_columns[cell.column_index].min_width;
  142. // and the product of:
  143. // - the ratio of the max-content width based on cells of span up to N-1 of the column to the baseline max-content width
  144. // - the outer min-content width of the cell minus the baseline max-content width and baseline border spacing, or 0 if this is negative
  145. cell_min_contribution += (m_columns[cell.column_index].max_width / baseline_max_content_width) * max(CSSPixels(0), cell.min_width - baseline_max_content_width);
  146. // The contribution of the cell is the sum of:
  147. // the max-content width of the column based on cells of span up to N-1
  148. auto cell_max_contribution = m_columns[cell.column_index].max_width;
  149. // and the product of:
  150. // - the ratio of the max-content width based on cells of span up to N-1 of the column to the baseline max-content width
  151. // - the outer max-content width of the cell minus the baseline max-content width and the baseline border spacing, or 0 if this is negative
  152. cell_max_contribution += (m_columns[cell.column_index].max_width / baseline_max_content_width) * max(CSSPixels(0), cell.max_width - baseline_max_content_width);
  153. cell_min_contributions_by_column_index[cell.column_index].append(cell_min_contribution);
  154. cell_max_contributions_by_column_index[cell.column_index].append(cell_max_contribution);
  155. }
  156. }
  157. for (size_t column_index = 0; column_index < m_columns.size(); column_index++) {
  158. // min-content width of a column based on cells of span up to N (N > 1) is
  159. // the largest of the min-content width of the column based on cells of span up to N-1 and the contributions of the cells in the column whose colSpan is N
  160. for (auto min_contribution : cell_min_contributions_by_column_index[column_index])
  161. m_columns[column_index].min_width = max(m_columns[column_index].min_width, min_contribution);
  162. // max-content width of a column based on cells of span up to N (N > 1) is
  163. // the largest of the max-content width based on cells of span up to N-1 and the contributions of the cells in the column whose colSpan is N
  164. for (auto max_contribution : cell_max_contributions_by_column_index[column_index])
  165. m_columns[column_index].max_width = max(m_columns[column_index].max_width, max_contribution);
  166. }
  167. }
  168. }
  169. void TableFormattingContext::compute_table_width()
  170. {
  171. // https://drafts.csswg.org/css-tables-3/#computing-the-table-width
  172. auto& table_box_state = m_state.get_mutable(table_box());
  173. auto& computed_values = table_box().computed_values();
  174. CSSPixels width_of_table_containing_block = m_state.get(*table_box().containing_block()).content_width();
  175. // Percentages on 'width' and 'height' on the table are relative to the table wrapper box's containing block,
  176. // not the table wrapper box itself.
  177. CSSPixels width_of_table_wrapper_containing_block = m_state.get(*table_wrapper().containing_block()).content_width();
  178. // The row/column-grid width minimum (GRIDMIN) width is the sum of the min-content width
  179. // of all the columns plus cell spacing or borders.
  180. CSSPixels grid_min = 0.0f;
  181. for (auto& column : m_columns) {
  182. grid_min += column.min_width;
  183. }
  184. // The row/column-grid width maximum (GRIDMAX) width is the sum of the max-content width
  185. // of all the columns plus cell spacing or borders.
  186. CSSPixels grid_max = 0.0f;
  187. for (auto& column : m_columns) {
  188. grid_max += column.max_width;
  189. }
  190. // The used min-width of a table is the greater of the resolved min-width, CAPMIN, and GRIDMIN.
  191. auto used_min_width = grid_min;
  192. if (!computed_values.min_width().is_auto()) {
  193. used_min_width = max(used_min_width, computed_values.min_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  194. }
  195. CSSPixels used_width;
  196. if (computed_values.width().is_auto()) {
  197. // If the table-root has 'width: auto', the used width is the greater of
  198. // min(GRIDMAX, the table’s containing block width), the used min-width of the table.
  199. used_width = max(min(grid_max, width_of_table_containing_block), used_min_width);
  200. } else {
  201. // If the table-root’s width property has a computed value (resolving to
  202. // resolved-table-width) other than auto, the used width is the greater
  203. // of resolved-table-width, and the used min-width of the table.
  204. CSSPixels resolved_table_width = computed_values.width().to_px(table_box(), width_of_table_wrapper_containing_block);
  205. used_width = max(resolved_table_width, used_min_width);
  206. if (!computed_values.max_width().is_none())
  207. used_width = min(used_width, computed_values.max_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  208. }
  209. // The assignable table width is the used width of the table minus the total horizontal border spacing (if any).
  210. // This is the width that we will be able to allocate to the columns.
  211. table_box_state.set_content_width(used_width - table_box_state.border_left - table_box_state.border_right);
  212. }
  213. void TableFormattingContext::distribute_width_to_columns()
  214. {
  215. // Implements https://www.w3.org/TR/css-tables-3/#width-distribution-algorithm
  216. CSSPixels available_width = m_state.get(table_box()).content_width();
  217. auto columns_total_used_width = [&]() {
  218. CSSPixels total_used_width = 0;
  219. for (auto& column : m_columns) {
  220. total_used_width += column.used_width;
  221. }
  222. return total_used_width;
  223. };
  224. auto column_preferred_width = [&](Column& column) {
  225. switch (column.type) {
  226. case ColumnType::Percent: {
  227. return max(column.min_width, column.percentage_width / 100 * available_width);
  228. }
  229. case ColumnType::Pixel:
  230. case ColumnType::Auto: {
  231. return column.max_width;
  232. }
  233. default: {
  234. VERIFY_NOT_REACHED();
  235. }
  236. }
  237. };
  238. auto expand_columns_to_fill_available_width = [&](ColumnType column_type) {
  239. CSSPixels remaining_available_width = available_width;
  240. CSSPixels total_preferred_width_increment = 0;
  241. for (auto& column : m_columns) {
  242. remaining_available_width -= column.used_width;
  243. if (column.type == column_type) {
  244. total_preferred_width_increment += column_preferred_width(column) - column.min_width;
  245. }
  246. }
  247. if (total_preferred_width_increment == 0)
  248. return;
  249. for (auto& column : m_columns) {
  250. if (column.type == column_type) {
  251. CSSPixels preferred_width_increment = column_preferred_width(column) - column.min_width;
  252. column.used_width += preferred_width_increment * remaining_available_width / total_preferred_width_increment;
  253. }
  254. }
  255. };
  256. auto shrink_columns_to_fit_available_width = [&](ColumnType column_type) {
  257. for (auto& column : m_columns) {
  258. if (column.type == column_type)
  259. column.used_width = column.min_width;
  260. }
  261. expand_columns_to_fill_available_width(column_type);
  262. };
  263. for (auto& column : m_columns) {
  264. column.used_width = column.min_width;
  265. }
  266. for (auto& column : m_columns) {
  267. if (column.type == ColumnType::Percent) {
  268. column.used_width = max(column.min_width, column.percentage_width / 100 * available_width);
  269. }
  270. }
  271. if (columns_total_used_width() > available_width) {
  272. shrink_columns_to_fit_available_width(ColumnType::Percent);
  273. return;
  274. }
  275. for (auto& column : m_columns) {
  276. if (column.type == ColumnType::Pixel) {
  277. column.used_width = column.max_width;
  278. }
  279. }
  280. if (columns_total_used_width() > available_width) {
  281. shrink_columns_to_fit_available_width(ColumnType::Pixel);
  282. return;
  283. }
  284. if (columns_total_used_width() < available_width) {
  285. expand_columns_to_fill_available_width(ColumnType::Auto);
  286. }
  287. if (columns_total_used_width() < available_width) {
  288. expand_columns_to_fill_available_width(ColumnType::Pixel);
  289. }
  290. if (columns_total_used_width() < available_width) {
  291. expand_columns_to_fill_available_width(ColumnType::Percent);
  292. }
  293. if (columns_total_used_width() < available_width) {
  294. // NOTE: if all columns got their max width and there is still width to distribute left
  295. // it should be assigned to columns proportionally to their max width
  296. CSSPixels grid_max = 0.0f;
  297. for (auto& column : m_columns) {
  298. grid_max += column.max_width;
  299. }
  300. auto width_to_distribute = available_width - columns_total_used_width();
  301. if (grid_max == 0) {
  302. // If total max width of columns is zero then divide distributable width equally among them
  303. auto column_width = width_to_distribute / m_columns.size();
  304. for (auto& column : m_columns) {
  305. column.used_width = column_width;
  306. }
  307. } else {
  308. // Distribute width to columns proportionally to their max width
  309. for (auto& column : m_columns) {
  310. column.used_width += width_to_distribute * column.max_width / grid_max;
  311. }
  312. }
  313. }
  314. }
  315. void TableFormattingContext::determine_intrisic_size_of_table_container(AvailableSpace const& available_space)
  316. {
  317. auto& table_box_state = m_state.get_mutable(table_box());
  318. if (available_space.width.is_min_content()) {
  319. // The min-content width of a table is the width required to fit all of its columns min-content widths and its undistributable spaces.
  320. CSSPixels grid_min = 0.0f;
  321. for (auto& column : m_columns)
  322. grid_min += column.min_width;
  323. table_box_state.set_content_width(grid_min);
  324. }
  325. if (available_space.width.is_max_content()) {
  326. // The max-content width of a table is the width required to fit all of its columns max-content widths and its undistributable spaces.
  327. CSSPixels grid_max = 0.0f;
  328. for (auto& column : m_columns)
  329. grid_max += column.max_width;
  330. table_box_state.set_content_width(grid_max);
  331. }
  332. }
  333. void TableFormattingContext::compute_table_height(LayoutMode layout_mode)
  334. {
  335. // First pass of row height calculation:
  336. for (auto& row : m_rows) {
  337. auto row_computed_height = row.box->computed_values().height();
  338. if (row_computed_height.is_length()) {
  339. auto height_of_containing_block = m_state.get(*row.box->containing_block()).content_height();
  340. auto row_used_height = row_computed_height.to_px(row.box, height_of_containing_block);
  341. row.base_height = max(row.base_height, row_used_height);
  342. }
  343. }
  344. // First pass of cells layout:
  345. for (auto& cell : m_cells) {
  346. auto& row = m_rows[cell.row_index];
  347. auto& cell_state = m_state.get_mutable(cell.box);
  348. CSSPixels span_width = 0;
  349. for (size_t i = 0; i < cell.column_span; ++i)
  350. span_width += m_columns[cell.column_index + i].used_width;
  351. auto width_of_containing_block = m_state.get(*cell.box->containing_block()).content_width();
  352. auto width_of_containing_block_as_length = CSS::Length::make_px(width_of_containing_block);
  353. auto height_of_containing_block = m_state.get(*cell.box->containing_block()).content_height();
  354. auto height_of_containing_block_as_length = CSS::Length::make_px(height_of_containing_block);
  355. cell_state.padding_top = cell.box->computed_values().padding().top().to_px(cell.box, width_of_containing_block);
  356. cell_state.padding_bottom = cell.box->computed_values().padding().bottom().to_px(cell.box, width_of_containing_block);
  357. cell_state.padding_left = cell.box->computed_values().padding().left().to_px(cell.box, width_of_containing_block);
  358. cell_state.padding_right = cell.box->computed_values().padding().right().to_px(cell.box, width_of_containing_block);
  359. auto is_top_most_cell = cell.row_index == 0;
  360. auto is_left_most_cell = cell.column_index == 0;
  361. auto is_right_most_cell = cell.column_index == m_columns.size() - 1;
  362. auto is_bottom_most_cell = cell.row_index == m_rows.size() - 1;
  363. auto should_hide_borders = cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Collapse;
  364. cell_state.border_top = (should_hide_borders && is_top_most_cell) ? 0 : cell.box->computed_values().border_top().width;
  365. cell_state.border_bottom = (should_hide_borders && is_bottom_most_cell) ? 0 : cell.box->computed_values().border_bottom().width;
  366. cell_state.border_left = (should_hide_borders && is_left_most_cell) ? 0 : cell.box->computed_values().border_left().width;
  367. cell_state.border_right = (should_hide_borders && is_right_most_cell) ? 0 : cell.box->computed_values().border_right().width;
  368. auto cell_computed_height = cell.box->computed_values().height();
  369. if (cell_computed_height.is_length()) {
  370. auto cell_used_height = cell_computed_height.to_px(cell.box, height_of_containing_block);
  371. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  372. row.base_height = max(row.base_height, cell_used_height);
  373. }
  374. cell_state.set_content_width((span_width - cell_state.border_box_left() - cell_state.border_box_right()));
  375. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  376. cell_state.set_content_height(independent_formatting_context->automatic_content_height());
  377. independent_formatting_context->parent_context_did_dimension_child_root_box();
  378. }
  379. cell.baseline = box_baseline(m_state, cell.box);
  380. row.base_height = max(row.base_height, cell_state.border_box_height());
  381. row.baseline = max(row.baseline, cell.baseline);
  382. }
  383. CSSPixels sum_rows_height = 0;
  384. for (auto& row : m_rows) {
  385. sum_rows_height += row.base_height;
  386. }
  387. // The height of a table is the sum of the row heights plus any cell spacing or borders.
  388. m_table_height = sum_rows_height;
  389. if (!table_box().computed_values().height().is_auto()) {
  390. // If the table has a height property with a value other than auto, it is treated as a minimum height for the
  391. // table grid, and will eventually be distributed to the height of the rows if their collective minimum height
  392. // ends up smaller than this number.
  393. CSSPixels height_of_table_containing_block = m_state.get(*table_wrapper().containing_block()).content_height();
  394. auto specified_table_height = table_box().computed_values().height().to_px(table_box(), height_of_table_containing_block);
  395. if (m_table_height < specified_table_height) {
  396. m_table_height = specified_table_height;
  397. }
  398. }
  399. for (auto& row : m_rows) {
  400. // Reference size is the largest of
  401. // - its initial base height and
  402. // - its new base height (the one evaluated during the second layout pass, where percentages used in
  403. // rowgroups/rows/cells' specified heights were resolved according to the table height, instead of
  404. // being ignored as 0px).
  405. // Assign reference size to base size. Later reference size might change to largee value during
  406. // second pass of rows layout.
  407. row.reference_height = row.base_height;
  408. }
  409. // Second pass of rows height calculation:
  410. // At this point percentage row height can be resolved because final table height is calculated.
  411. for (auto& row : m_rows) {
  412. auto row_computed_height = row.box->computed_values().height();
  413. if (row_computed_height.is_percentage()) {
  414. auto row_used_height = row_computed_height.to_px(row.box, m_table_height);
  415. row.reference_height = max(row.reference_height, row_used_height);
  416. } else {
  417. continue;
  418. }
  419. }
  420. // Second pass cells layout:
  421. // At this point percantage cell height can be resolved because final table heigh is calculated.
  422. for (auto& cell : m_cells) {
  423. auto& row = m_rows[cell.row_index];
  424. auto& cell_state = m_state.get_mutable(cell.box);
  425. CSSPixels span_width = 0;
  426. for (size_t i = 0; i < cell.column_span; ++i)
  427. span_width += m_columns[cell.column_index + i].used_width;
  428. auto cell_computed_height = cell.box->computed_values().height();
  429. if (cell_computed_height.is_percentage()) {
  430. auto cell_used_height = cell_computed_height.to_px(cell.box, m_table_height);
  431. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  432. row.reference_height = max(row.reference_height, cell_used_height);
  433. } else {
  434. continue;
  435. }
  436. cell_state.set_content_width((span_width - cell_state.border_box_left() - cell_state.border_box_right()));
  437. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  438. independent_formatting_context->parent_context_did_dimension_child_root_box();
  439. }
  440. cell.baseline = box_baseline(m_state, cell.box);
  441. row.reference_height = max(row.reference_height, cell_state.border_box_height());
  442. row.baseline = max(row.baseline, cell.baseline);
  443. }
  444. }
  445. void TableFormattingContext::distribute_height_to_rows()
  446. {
  447. CSSPixels sum_reference_height = 0;
  448. for (auto& row : m_rows) {
  449. sum_reference_height += row.reference_height;
  450. }
  451. if (sum_reference_height == 0)
  452. return;
  453. Vector<Row&> rows_with_auto_height;
  454. for (auto& row : m_rows) {
  455. if (row.box->computed_values().height().is_auto()) {
  456. rows_with_auto_height.append(row);
  457. }
  458. }
  459. if (m_table_height <= sum_reference_height) {
  460. // If the table height is equal or smaller than sum of reference sizes, the final height assigned to each row
  461. // will be the weighted mean of the base and the reference size that yields the correct total height.
  462. for (auto& row : m_rows) {
  463. auto weight = row.reference_height / sum_reference_height;
  464. auto final_height = m_table_height * weight;
  465. row.final_height = final_height;
  466. }
  467. } else if (rows_with_auto_height.size() > 0) {
  468. // Else, if the table owns any “auto-height” row (a row whose size is only determined by its content size and
  469. // none of the specified heights), each non-auto-height row receives its reference height and auto-height rows
  470. // receive their reference size plus some increment which is equal to the height missing to amount to the
  471. // specified table height divided by the amount of such rows.
  472. for (auto& row : m_rows) {
  473. row.final_height = row.reference_height;
  474. }
  475. auto auto_height_rows_increment = (m_table_height - sum_reference_height) / rows_with_auto_height.size();
  476. for (auto& row : rows_with_auto_height) {
  477. row.final_height += auto_height_rows_increment;
  478. }
  479. } else {
  480. // Else, all rows receive their reference size plus some increment which is equal to the height missing to
  481. // amount to the specified table height divided by the amount of rows.
  482. auto increment = (m_table_height - sum_reference_height) / m_rows.size();
  483. for (auto& row : m_rows) {
  484. row.final_height = row.reference_height + increment;
  485. }
  486. }
  487. }
  488. void TableFormattingContext::position_row_boxes(CSSPixels& total_content_height)
  489. {
  490. auto const& table_state = m_state.get(table_box());
  491. CSSPixels row_top_offset = table_state.border_top + table_state.padding_top;
  492. CSSPixels row_left_offset = table_state.border_left + table_state.padding_left;
  493. for (size_t y = 0; y < m_rows.size(); y++) {
  494. auto& row = m_rows[y];
  495. auto& row_state = m_state.get_mutable(row.box);
  496. CSSPixels row_width = 0.0f;
  497. for (auto& column : m_columns) {
  498. row_width += column.used_width;
  499. }
  500. row_state.set_content_height(row.final_height);
  501. row_state.set_content_width(row_width);
  502. row_state.set_content_x(row_left_offset);
  503. row_state.set_content_y(row_top_offset);
  504. row_top_offset += row_state.content_height();
  505. }
  506. CSSPixels row_group_top_offset = table_state.border_top + table_state.padding_top;
  507. CSSPixels row_group_left_offset = table_state.border_left + table_state.padding_left;
  508. table_box().for_each_child_of_type<TableRowGroupBox>([&](auto& row_group_box) {
  509. CSSPixels row_group_height = 0.0f;
  510. CSSPixels row_group_width = 0.0f;
  511. auto& row_group_box_state = m_state.get_mutable(row_group_box);
  512. row_group_box_state.set_content_x(row_group_left_offset);
  513. row_group_box_state.set_content_y(row_group_top_offset);
  514. row_group_box.template for_each_child_of_type<TableRowBox>([&](auto& row) {
  515. auto const& row_state = m_state.get(row);
  516. row_group_height += row_state.border_box_height();
  517. row_group_width = max(row_group_width, row_state.border_box_width());
  518. });
  519. row_group_box_state.set_content_height(row_group_height);
  520. row_group_box_state.set_content_width(row_group_width);
  521. row_group_top_offset += row_group_height;
  522. });
  523. total_content_height = max(row_top_offset, row_group_top_offset) - table_state.border_top - table_state.padding_top;
  524. }
  525. void TableFormattingContext::position_cell_boxes()
  526. {
  527. CSSPixels left_column_offset = 0;
  528. for (auto& column : m_columns) {
  529. column.left_offset = left_column_offset;
  530. left_column_offset += column.used_width;
  531. }
  532. for (auto& cell : m_cells) {
  533. auto& cell_state = m_state.get_mutable(cell.box);
  534. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  535. CSSPixels const cell_border_box_height = cell_state.content_height() + cell_state.border_box_top() + cell_state.border_box_bottom();
  536. CSSPixels const row_content_height = row_state.content_height();
  537. auto const& vertical_align = cell.box->computed_values().vertical_align();
  538. if (vertical_align.has<CSS::VerticalAlign>()) {
  539. switch (vertical_align.get<CSS::VerticalAlign>()) {
  540. case CSS::VerticalAlign::Middle: {
  541. cell_state.padding_top += (row_content_height - cell_border_box_height) / 2;
  542. cell_state.padding_bottom += (row_content_height - cell_border_box_height) / 2;
  543. break;
  544. }
  545. // FIXME: implement actual 'top' and 'bottom' support instead of fall back to 'baseline'
  546. case CSS::VerticalAlign::Top:
  547. case CSS::VerticalAlign::Bottom:
  548. case CSS::VerticalAlign::Baseline: {
  549. cell_state.padding_top += m_rows[cell.row_index].baseline - cell.baseline;
  550. cell_state.padding_bottom += row_content_height - cell_border_box_height;
  551. break;
  552. }
  553. default:
  554. VERIFY_NOT_REACHED();
  555. }
  556. }
  557. cell_state.offset = row_state.offset.translated(cell_state.border_box_left() + m_columns[cell.column_index].left_offset, cell_state.border_box_top());
  558. }
  559. }
  560. void TableFormattingContext::run(Box const& box, LayoutMode layout_mode, AvailableSpace const& available_space)
  561. {
  562. m_available_space = available_space;
  563. CSSPixels total_content_height = 0;
  564. // Determine the number of rows/columns the table requires.
  565. calculate_row_column_grid(box);
  566. // Compute the minimum width of each column.
  567. compute_table_measures();
  568. if (available_space.width.is_intrinsic_sizing_constraint() && !available_space.height.is_intrinsic_sizing_constraint()) {
  569. determine_intrisic_size_of_table_container(available_space);
  570. return;
  571. }
  572. // Compute the width of the table.
  573. compute_table_width();
  574. // Distribute the width of the table among columns.
  575. distribute_width_to_columns();
  576. compute_table_height(layout_mode);
  577. distribute_height_to_rows();
  578. position_row_boxes(total_content_height);
  579. position_cell_boxes();
  580. m_state.get_mutable(table_box()).set_content_height(total_content_height);
  581. // FIXME: This is a total hack, we should respect the 'height' property.
  582. m_automatic_content_height = total_content_height;
  583. }
  584. CSSPixels TableFormattingContext::automatic_content_width() const
  585. {
  586. return greatest_child_width(context_box());
  587. }
  588. CSSPixels TableFormattingContext::automatic_content_height() const
  589. {
  590. return m_automatic_content_height;
  591. }
  592. }