TableFormattingContext.cpp 34 KB

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