TableFormattingContext.cpp 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  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 width_of_containing_block_as_length = CSS::Length::make_px(width_of_containing_block);
  89. auto& computed_values = cell.box->computed_values();
  90. CSSPixels padding_left = computed_values.padding().left().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box);
  91. CSSPixels padding_right = computed_values.padding().right().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box);
  92. auto is_left_most_cell = cell.column_index == 0;
  93. auto is_right_most_cell = cell.column_index == m_columns.size() - 1;
  94. auto should_hide_borders = cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Collapse;
  95. CSSPixels border_left = should_hide_borders && !is_left_most_cell ? 0 : computed_values.border_left().width;
  96. CSSPixels border_right = should_hide_borders && !is_right_most_cell ? 0 : computed_values.border_right().width;
  97. CSSPixels width = computed_values.width().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box);
  98. auto cell_intrinsic_offsets = padding_left + padding_right + border_left + border_right;
  99. auto min_content_width = calculate_min_content_width(cell.box);
  100. auto max_content_width = calculate_max_content_width(cell.box);
  101. CSSPixels min_width = min_content_width;
  102. if (!computed_values.min_width().is_auto())
  103. min_width = max(min_width, computed_values.min_width().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box));
  104. CSSPixels max_width = computed_values.width().is_auto() ? max_content_width.value() : width;
  105. if (!computed_values.max_width().is_none())
  106. max_width = min(max_width, computed_values.max_width().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box));
  107. auto computed_width = computed_values.width();
  108. if (computed_width.is_percentage()) {
  109. m_columns[cell.column_index].type = ColumnType::Percent;
  110. m_columns[cell.column_index].percentage_width = max(m_columns[cell.column_index].percentage_width, computed_width.percentage().value());
  111. } else if (computed_width.is_length()) {
  112. m_columns[cell.column_index].type = ColumnType::Pixel;
  113. }
  114. cell.min_width = min_width + cell_intrinsic_offsets;
  115. cell.max_width = max(max(width, min_width), max_width) + cell_intrinsic_offsets;
  116. max_cell_column_span = max(max_cell_column_span, cell.column_span);
  117. }
  118. for (auto& cell : m_cells) {
  119. if (cell.column_span == 1) {
  120. m_columns[cell.column_index].min_width = max(m_columns[cell.column_index].min_width, cell.min_width);
  121. m_columns[cell.column_index].max_width = max(m_columns[cell.column_index].max_width, cell.max_width);
  122. }
  123. }
  124. for (size_t current_column_span = 2; current_column_span < max_cell_column_span; current_column_span++) {
  125. // https://www.w3.org/TR/css-tables-3/#min-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  126. Vector<Vector<CSSPixels>> cell_min_contributions_by_column_index;
  127. cell_min_contributions_by_column_index.resize(m_columns.size());
  128. // https://www.w3.org/TR/css-tables-3/#max-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  129. Vector<Vector<CSSPixels>> cell_max_contributions_by_column_index;
  130. cell_max_contributions_by_column_index.resize(m_columns.size());
  131. for (auto& cell : m_cells) {
  132. if (cell.column_span == current_column_span) {
  133. // 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.
  134. CSSPixels baseline_max_content_width = 0;
  135. auto cell_start_column_index = cell.column_index;
  136. auto cell_end_column_index = cell.column_index + cell.column_span;
  137. for (auto column_index = cell_start_column_index; column_index < cell_end_column_index; column_index++) {
  138. baseline_max_content_width += m_columns[column_index].max_width;
  139. }
  140. // The contribution of the cell is the sum of:
  141. // the min-content width of the column based on cells of span up to N-1
  142. auto cell_min_contribution = m_columns[cell.column_index].min_width;
  143. // and the product of:
  144. // - 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
  145. // - the outer min-content width of the cell minus the baseline max-content width and baseline border spacing, or 0 if this is negative
  146. cell_min_contribution += (m_columns[cell.column_index].max_width / baseline_max_content_width) * max(CSSPixels(0), cell.min_width - baseline_max_content_width);
  147. // The contribution of the cell is the sum of:
  148. // the max-content width of the column based on cells of span up to N-1
  149. auto cell_max_contribution = m_columns[cell.column_index].max_width;
  150. // and the product of:
  151. // - 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
  152. // - 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
  153. cell_max_contribution += (m_columns[cell.column_index].max_width / baseline_max_content_width) * max(CSSPixels(0), cell.max_width - baseline_max_content_width);
  154. cell_min_contributions_by_column_index[cell.column_index].append(cell_min_contribution);
  155. cell_max_contributions_by_column_index[cell.column_index].append(cell_max_contribution);
  156. }
  157. }
  158. for (size_t column_index = 0; column_index < m_columns.size(); column_index++) {
  159. // min-content width of a column based on cells of span up to N (N > 1) is
  160. // 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
  161. for (auto min_contribution : cell_min_contributions_by_column_index[column_index])
  162. m_columns[column_index].min_width = max(m_columns[column_index].min_width, min_contribution);
  163. // max-content width of a column based on cells of span up to N (N > 1) is
  164. // 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
  165. for (auto max_contribution : cell_max_contributions_by_column_index[column_index])
  166. m_columns[column_index].max_width = max(m_columns[column_index].max_width, max_contribution);
  167. }
  168. }
  169. }
  170. void TableFormattingContext::compute_table_width()
  171. {
  172. auto& table_box_state = m_state.get_mutable(table_box());
  173. auto& computed_values = table_box().computed_values();
  174. // Percentages on 'width' and 'height' on the table are relative to the table wrapper box's containing block,
  175. // not the table wrapper box itself.
  176. CSSPixels width_of_table_containing_block = m_state.get(*table_wrapper().containing_block()).content_width();
  177. // The row/column-grid width minimum (GRIDMIN) width is the sum of the min-content width
  178. // of all the columns plus cell spacing or borders.
  179. CSSPixels grid_min = 0.0f;
  180. for (auto& column : m_columns) {
  181. grid_min += column.min_width;
  182. }
  183. // The row/column-grid width maximum (GRIDMAX) width is the sum of the max-content width
  184. // of all the columns plus cell spacing or borders.
  185. CSSPixels grid_max = 0.0f;
  186. for (auto& column : m_columns) {
  187. grid_max += column.max_width;
  188. }
  189. // The used min-width of a table is the greater of the resolved min-width, CAPMIN, and GRIDMIN.
  190. auto used_min_width = grid_min;
  191. if (!computed_values.min_width().is_auto()) {
  192. used_min_width = max(used_min_width, computed_values.min_width().resolved(table_box(), CSS::Length::make_px(width_of_table_containing_block)).to_px(table_box()));
  193. }
  194. CSSPixels used_width;
  195. if (computed_values.width().is_auto()) {
  196. // If the table-root has 'width: auto', the used width is the greater of
  197. // min(GRIDMAX, the table’s containing block width), the used min-width of the table.
  198. used_width = max(min(grid_max, width_of_table_containing_block), used_min_width);
  199. table_box_state.set_content_width(used_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().resolved(table_box(), CSS::Length::make_px(width_of_table_containing_block)).to_px(table_box());
  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().resolved(table_box(), CSS::Length::make_px(width_of_table_containing_block)).to_px(table_box()));
  208. table_box_state.set_content_width(used_width);
  209. }
  210. }
  211. void TableFormattingContext::distribute_width_to_columns()
  212. {
  213. // Implements https://www.w3.org/TR/css-tables-3/#width-distribution-algorithm
  214. CSSPixels available_width = m_state.get(table_box()).content_width();
  215. auto columns_total_used_width = [&]() {
  216. CSSPixels total_used_width = 0;
  217. for (auto& column : m_columns) {
  218. total_used_width += column.used_width;
  219. }
  220. return total_used_width;
  221. };
  222. auto column_preferred_width = [&](Column& column) {
  223. switch (column.type) {
  224. case ColumnType::Percent: {
  225. return max(column.min_width, column.percentage_width / 100 * available_width);
  226. }
  227. case ColumnType::Pixel:
  228. case ColumnType::Auto: {
  229. return column.max_width;
  230. }
  231. default: {
  232. VERIFY_NOT_REACHED();
  233. }
  234. }
  235. };
  236. auto expand_columns_to_fill_available_width = [&](ColumnType column_type) {
  237. CSSPixels remaining_available_width = available_width;
  238. CSSPixels total_preferred_width_increment = 0;
  239. for (auto& column : m_columns) {
  240. remaining_available_width -= column.used_width;
  241. if (column.type == column_type) {
  242. total_preferred_width_increment += column_preferred_width(column) - column.min_width;
  243. }
  244. }
  245. if (total_preferred_width_increment == 0)
  246. return;
  247. for (auto& column : m_columns) {
  248. if (column.type == column_type) {
  249. CSSPixels preferred_width_increment = column_preferred_width(column) - column.min_width;
  250. column.used_width += preferred_width_increment * remaining_available_width / total_preferred_width_increment;
  251. }
  252. }
  253. };
  254. auto shrink_columns_to_fit_available_width = [&](ColumnType column_type) {
  255. for (auto& column : m_columns) {
  256. if (column.type == column_type)
  257. column.used_width = column.min_width;
  258. }
  259. expand_columns_to_fill_available_width(column_type);
  260. };
  261. for (auto& column : m_columns) {
  262. column.used_width = column.min_width;
  263. }
  264. for (auto& column : m_columns) {
  265. if (column.type == ColumnType::Percent) {
  266. column.used_width = max(column.min_width, column.percentage_width / 100 * available_width);
  267. }
  268. }
  269. if (columns_total_used_width() > available_width) {
  270. shrink_columns_to_fit_available_width(ColumnType::Percent);
  271. return;
  272. }
  273. for (auto& column : m_columns) {
  274. if (column.type == ColumnType::Pixel) {
  275. column.used_width = column.max_width;
  276. }
  277. }
  278. if (columns_total_used_width() > available_width) {
  279. shrink_columns_to_fit_available_width(ColumnType::Pixel);
  280. return;
  281. }
  282. if (columns_total_used_width() < available_width) {
  283. expand_columns_to_fill_available_width(ColumnType::Auto);
  284. }
  285. if (columns_total_used_width() < available_width) {
  286. expand_columns_to_fill_available_width(ColumnType::Pixel);
  287. }
  288. if (columns_total_used_width() < available_width) {
  289. expand_columns_to_fill_available_width(ColumnType::Percent);
  290. }
  291. if (columns_total_used_width() < available_width) {
  292. // NOTE: if all columns got their max width and there is still width to distribute left
  293. // it should be assigned to columns proportionally to their max width
  294. CSSPixels grid_max = 0.0f;
  295. for (auto& column : m_columns) {
  296. grid_max += column.max_width;
  297. }
  298. auto width_to_distribute = available_width - columns_total_used_width();
  299. for (auto& column : m_columns) {
  300. column.used_width += width_to_distribute * column.max_width / grid_max;
  301. }
  302. }
  303. }
  304. void TableFormattingContext::determine_intrisic_size_of_table_container(AvailableSpace const& available_space)
  305. {
  306. auto& table_box_state = m_state.get_mutable(table_box());
  307. if (available_space.width.is_min_content()) {
  308. // The min-content width of a table is the width required to fit all of its columns min-content widths and its undistributable spaces.
  309. CSSPixels grid_min = 0.0f;
  310. for (auto& column : m_columns)
  311. grid_min += column.min_width;
  312. table_box_state.set_content_width(grid_min);
  313. }
  314. if (available_space.width.is_max_content()) {
  315. // The max-content width of a table is the width required to fit all of its columns max-content widths and its undistributable spaces.
  316. CSSPixels grid_max = 0.0f;
  317. for (auto& column : m_columns)
  318. grid_max += column.max_width;
  319. table_box_state.set_content_width(grid_max);
  320. }
  321. }
  322. void TableFormattingContext::calculate_row_heights(LayoutMode layout_mode)
  323. {
  324. for (auto& cell : m_cells) {
  325. auto& cell_state = m_state.get_mutable(cell.box);
  326. CSSPixels span_width = 0;
  327. for (size_t i = 0; i < cell.column_span; ++i)
  328. span_width += m_columns[cell.column_index + i].used_width;
  329. auto width_of_containing_block = m_state.get(*cell.box->containing_block()).content_width();
  330. auto width_of_containing_block_as_length = CSS::Length::make_px(width_of_containing_block);
  331. cell_state.padding_top = cell.box->computed_values().padding().top().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box);
  332. cell_state.padding_bottom = cell.box->computed_values().padding().bottom().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box);
  333. cell_state.padding_left = cell.box->computed_values().padding().left().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box);
  334. cell_state.padding_right = cell.box->computed_values().padding().right().resolved(cell.box, width_of_containing_block_as_length).to_px(cell.box);
  335. auto is_top_most_cell = cell.row_index == 0;
  336. auto is_left_most_cell = cell.column_index == 0;
  337. auto is_right_most_cell = cell.column_index == m_columns.size() - 1;
  338. auto is_bottom_most_cell = cell.row_index == m_rows.size() - 1;
  339. auto should_hide_borders = cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Collapse;
  340. cell_state.border_top = (should_hide_borders && is_top_most_cell) ? 0 : cell.box->computed_values().border_top().width;
  341. cell_state.border_bottom = (should_hide_borders && is_bottom_most_cell) ? 0 : cell.box->computed_values().border_bottom().width;
  342. cell_state.border_left = (should_hide_borders && is_left_most_cell) ? 0 : cell.box->computed_values().border_left().width;
  343. cell_state.border_right = (should_hide_borders && is_right_most_cell) ? 0 : cell.box->computed_values().border_right().width;
  344. cell_state.set_content_width((span_width - cell_state.border_box_left() - cell_state.border_box_right()));
  345. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  346. cell_state.set_content_height(independent_formatting_context->automatic_content_height());
  347. independent_formatting_context->parent_context_did_dimension_child_root_box();
  348. }
  349. cell.baseline = box_baseline(m_state, cell.box);
  350. auto& row = m_rows[cell.row_index];
  351. row.used_height = max(row.used_height, cell_state.border_box_height());
  352. row.baseline = max(row.baseline, cell.baseline);
  353. }
  354. }
  355. void TableFormattingContext::position_row_boxes(CSSPixels& total_content_height)
  356. {
  357. auto const& table_state = m_state.get(table_box());
  358. CSSPixels row_top_offset = table_state.border_top + table_state.padding_top;
  359. CSSPixels row_left_offset = table_state.border_left + table_state.padding_left;
  360. for (size_t y = 0; y < m_rows.size(); y++) {
  361. auto& row = m_rows[y];
  362. auto& row_state = m_state.get_mutable(row.box);
  363. CSSPixels row_width = 0.0f;
  364. for (auto& column : m_columns) {
  365. row_width += column.used_width;
  366. }
  367. row_state.set_content_height(row.used_height);
  368. row_state.set_content_width(row_width);
  369. row_state.set_content_x(row_left_offset);
  370. row_state.set_content_y(row_top_offset);
  371. row_top_offset += row_state.content_height();
  372. }
  373. CSSPixels row_group_top_offset = table_state.border_top + table_state.padding_top;
  374. CSSPixels row_group_left_offset = table_state.border_left + table_state.padding_left;
  375. table_box().for_each_child_of_type<TableRowGroupBox>([&](auto& row_group_box) {
  376. CSSPixels row_group_height = 0.0f;
  377. CSSPixels row_group_width = 0.0f;
  378. auto& row_group_box_state = m_state.get_mutable(row_group_box);
  379. row_group_box_state.set_content_x(row_group_left_offset);
  380. row_group_box_state.set_content_y(row_group_top_offset);
  381. row_group_box.template for_each_child_of_type<TableRowBox>([&](auto& row) {
  382. auto const& row_state = m_state.get(row);
  383. row_group_height += row_state.border_box_height();
  384. row_group_width = max(row_group_width, row_state.border_box_width());
  385. });
  386. row_group_box_state.set_content_height(row_group_height);
  387. row_group_box_state.set_content_width(row_group_width);
  388. row_group_top_offset += row_group_height;
  389. });
  390. total_content_height = max(row_top_offset, row_group_top_offset) - table_state.border_top - table_state.padding_top;
  391. }
  392. void TableFormattingContext::position_cell_boxes()
  393. {
  394. CSSPixels left_column_offset = 0;
  395. for (auto& column : m_columns) {
  396. column.left_offset = left_column_offset;
  397. left_column_offset += column.used_width;
  398. }
  399. for (auto& cell : m_cells) {
  400. auto& cell_state = m_state.get_mutable(cell.box);
  401. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  402. CSSPixels const cell_border_box_height = cell_state.content_height() + cell_state.border_box_top() + cell_state.border_box_bottom();
  403. CSSPixels const row_content_height = row_state.content_height();
  404. auto const& vertical_align = cell.box->computed_values().vertical_align();
  405. if (vertical_align.has<CSS::VerticalAlign>()) {
  406. switch (vertical_align.get<CSS::VerticalAlign>()) {
  407. case CSS::VerticalAlign::Middle: {
  408. cell_state.padding_top += (row_content_height - cell_border_box_height) / 2;
  409. cell_state.padding_bottom += (row_content_height - cell_border_box_height) / 2;
  410. break;
  411. }
  412. // FIXME: implement actual 'top' and 'bottom' support instead of fall back to 'baseline'
  413. case CSS::VerticalAlign::Top:
  414. case CSS::VerticalAlign::Bottom:
  415. case CSS::VerticalAlign::Baseline: {
  416. cell_state.padding_top += m_rows[cell.row_index].baseline - cell.baseline;
  417. cell_state.padding_bottom += row_content_height - cell_border_box_height;
  418. break;
  419. }
  420. default:
  421. VERIFY_NOT_REACHED();
  422. }
  423. }
  424. cell_state.offset = row_state.offset.translated(cell_state.border_box_left() + m_columns[cell.column_index].left_offset, cell_state.border_box_top());
  425. }
  426. }
  427. void TableFormattingContext::run(Box const& box, LayoutMode layout_mode, AvailableSpace const& available_space)
  428. {
  429. m_available_space = available_space;
  430. CSSPixels total_content_height = 0;
  431. // Determine the number of rows/columns the table requires.
  432. calculate_row_column_grid(box);
  433. // Compute the minimum width of each column.
  434. compute_table_measures();
  435. if (available_space.width.is_intrinsic_sizing_constraint() && !available_space.height.is_intrinsic_sizing_constraint()) {
  436. determine_intrisic_size_of_table_container(available_space);
  437. return;
  438. }
  439. // Compute the width of the table.
  440. compute_table_width();
  441. // Distribute the width of the table among columns.
  442. distribute_width_to_columns();
  443. calculate_row_heights(layout_mode);
  444. position_row_boxes(total_content_height);
  445. position_cell_boxes();
  446. m_state.get_mutable(table_box()).set_content_height(total_content_height);
  447. // FIXME: This is a total hack, we should respect the 'height' property.
  448. m_automatic_content_height = total_content_height;
  449. }
  450. CSSPixels TableFormattingContext::automatic_content_width() const
  451. {
  452. return greatest_child_width(context_box());
  453. }
  454. CSSPixels TableFormattingContext::automatic_content_height() const
  455. {
  456. return m_automatic_content_height;
  457. }
  458. }