TableFormattingContext.cpp 54 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162
  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/HTML/HTMLTableCellElement.h>
  9. #include <LibWeb/HTML/HTMLTableColElement.h>
  10. #include <LibWeb/Layout/BlockFormattingContext.h>
  11. #include <LibWeb/Layout/Box.h>
  12. #include <LibWeb/Layout/InlineFormattingContext.h>
  13. #include <LibWeb/Layout/TableFormattingContext.h>
  14. struct GridPosition {
  15. size_t x;
  16. size_t y;
  17. };
  18. inline bool operator==(GridPosition const& a, GridPosition const& b)
  19. {
  20. return a.x == b.x && a.y == b.y;
  21. }
  22. namespace AK {
  23. template<>
  24. struct Traits<GridPosition> : public GenericTraits<GridPosition> {
  25. static unsigned hash(GridPosition const& key)
  26. {
  27. return pair_int_hash(key.x, key.y);
  28. }
  29. };
  30. }
  31. namespace Web::Layout {
  32. TableFormattingContext::TableFormattingContext(LayoutState& state, Box const& root, FormattingContext* parent)
  33. : FormattingContext(Type::Table, state, root, parent)
  34. {
  35. }
  36. TableFormattingContext::~TableFormattingContext() = default;
  37. static inline bool is_table_row_group(Box const& box)
  38. {
  39. auto const& display = box.display();
  40. return display.is_table_row_group() || display.is_table_header_group() || display.is_table_footer_group();
  41. }
  42. static inline bool is_table_row(Box const& box)
  43. {
  44. return box.display().is_table_row();
  45. }
  46. template<typename Matcher, typename Callback>
  47. static void for_each_child_box_matching(Box const& parent, Matcher matcher, Callback callback)
  48. {
  49. parent.for_each_child_of_type<Box>([&](Box const& child_box) {
  50. if (matcher(child_box))
  51. callback(child_box);
  52. });
  53. }
  54. CSSPixels TableFormattingContext::run_caption_layout(LayoutMode layout_mode, CSS::CaptionSide phase)
  55. {
  56. CSSPixels caption_height = 0;
  57. for (auto* child = table_box().first_child(); child; child = child->next_sibling()) {
  58. if (!child->display().is_table_caption() || child->computed_values().caption_side() != phase) {
  59. continue;
  60. }
  61. // The caption boxes are principal block-level boxes that retain their own content, padding, margin, and border areas,
  62. // and are rendered as normal block boxes inside the table wrapper box, as described in https://www.w3.org/TR/CSS22/tables.html#model
  63. auto caption_context = make<BlockFormattingContext>(m_state, *verify_cast<BlockContainer>(child), this);
  64. caption_context->run(table_box(), layout_mode, *m_available_space);
  65. VERIFY(child->is_box());
  66. auto const& child_box = static_cast<Box const&>(*child);
  67. // FIXME: Since caption only has inline children, BlockFormattingContext doesn't resolve the vertical metrics.
  68. // We need to do it manually here.
  69. caption_context->resolve_vertical_box_model_metrics(child_box);
  70. auto const& caption_state = m_state.get(child_box);
  71. if (phase == CSS::CaptionSide::Top) {
  72. m_state.get_mutable(table_box()).set_content_y(caption_state.margin_box_height());
  73. } else {
  74. m_state.get_mutable(child_box).set_content_y(
  75. m_state.get(table_box()).margin_box_height() + caption_state.margin_box_top());
  76. }
  77. caption_height += caption_state.margin_box_height();
  78. }
  79. return caption_height;
  80. }
  81. void TableFormattingContext::calculate_row_column_grid(Box const& box)
  82. {
  83. // Implements https://html.spec.whatwg.org/multipage/tables.html#forming-a-table
  84. HashMap<GridPosition, bool> grid;
  85. size_t x_width = 0, y_height = 0;
  86. size_t x_current = 0, y_current = 0;
  87. // Implements https://html.spec.whatwg.org/multipage/tables.html#algorithm-for-processing-rows
  88. auto process_row = [&](auto& row) {
  89. if (y_height == y_current)
  90. y_height++;
  91. x_current = 0;
  92. for (auto* child = row.first_child(); child; child = child->next_sibling()) {
  93. if (child->display().is_table_cell()) {
  94. // Cells: While x_current is less than x_width and the slot with coordinate (x_current, y_current) already has a cell assigned to it, increase x_current by 1.
  95. while (x_current < x_width && grid.contains(GridPosition { x_current, y_current }))
  96. x_current++;
  97. Box const* box = static_cast<Box const*>(child);
  98. if (x_current == x_width)
  99. x_width++;
  100. size_t colspan = 1, rowspan = 1;
  101. if (box->dom_node() && is<HTML::HTMLTableCellElement>(*box->dom_node())) {
  102. auto const& node = static_cast<HTML::HTMLTableCellElement const&>(*box->dom_node());
  103. colspan = node.col_span();
  104. rowspan = node.row_span();
  105. }
  106. if (x_width < x_current + colspan)
  107. x_width = x_current + colspan;
  108. if (y_height < y_current + rowspan)
  109. y_height = y_current + rowspan;
  110. for (size_t y = y_current; y < y_current + rowspan; y++)
  111. for (size_t x = x_current; x < x_current + colspan; x++)
  112. grid.set(GridPosition { x, y }, true);
  113. m_cells.append(Cell { *box, x_current, y_current, colspan, rowspan });
  114. x_current += colspan;
  115. }
  116. }
  117. m_rows.append(Row { row });
  118. y_current++;
  119. };
  120. for_each_child_box_matching(box, is_table_row_group, [&](auto& row_group_box) {
  121. for_each_child_box_matching(row_group_box, is_table_row, [&](auto& row_box) {
  122. process_row(row_box);
  123. return IterationDecision::Continue;
  124. });
  125. });
  126. for_each_child_box_matching(box, is_table_row, [&](auto& row_box) {
  127. process_row(row_box);
  128. return IterationDecision::Continue;
  129. });
  130. m_columns.resize(x_width);
  131. for (auto& cell : m_cells) {
  132. // Clip spans to the end of the table.
  133. cell.row_span = min(cell.row_span, m_rows.size() - cell.row_index);
  134. cell.column_span = min(cell.column_span, m_columns.size() - cell.column_index);
  135. }
  136. }
  137. void TableFormattingContext::compute_cell_measures(AvailableSpace const& available_space)
  138. {
  139. auto const& containing_block = m_state.get(*table_wrapper().containing_block());
  140. for (auto& cell : m_cells) {
  141. auto const& computed_values = cell.box->computed_values();
  142. CSSPixels padding_top = computed_values.padding().top().to_px(cell.box, containing_block.content_height());
  143. CSSPixels padding_bottom = computed_values.padding().bottom().to_px(cell.box, containing_block.content_height());
  144. CSSPixels padding_left = computed_values.padding().left().to_px(cell.box, containing_block.content_width());
  145. CSSPixels padding_right = computed_values.padding().right().to_px(cell.box, containing_block.content_width());
  146. auto const& cell_state = m_state.get(cell.box);
  147. auto is_collapse = cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Collapse;
  148. CSSPixels border_top = is_collapse ? cell_state.border_top : computed_values.border_top().width;
  149. CSSPixels border_bottom = is_collapse ? cell_state.border_bottom : computed_values.border_bottom().width;
  150. CSSPixels border_left = is_collapse ? cell_state.border_left : computed_values.border_left().width;
  151. CSSPixels border_right = is_collapse ? cell_state.border_right : computed_values.border_right().width;
  152. auto height = computed_values.height().to_px(cell.box, containing_block.content_height());
  153. auto width = computed_values.width().to_px(cell.box, containing_block.content_width());
  154. auto min_content_height = calculate_min_content_height(cell.box, available_space.width);
  155. auto max_content_height = calculate_max_content_height(cell.box, available_space.width);
  156. auto min_content_width = calculate_min_content_width(cell.box);
  157. auto max_content_width = calculate_max_content_width(cell.box);
  158. CSSPixels min_height = min_content_height;
  159. CSSPixels min_width = min_content_width;
  160. if (!computed_values.min_height().is_auto())
  161. min_height = max(min_height, computed_values.min_height().to_px(cell.box, containing_block.content_height()));
  162. if (!computed_values.min_width().is_auto())
  163. min_width = max(min_width, computed_values.min_width().to_px(cell.box, containing_block.content_width()));
  164. CSSPixels max_height = computed_values.height().is_auto() ? max_content_height : height;
  165. CSSPixels max_width = computed_values.width().is_auto() ? max_content_width : width;
  166. if (!should_treat_max_height_as_none(cell.box, available_space.height))
  167. max_height = min(max_height, computed_values.max_height().to_px(cell.box, containing_block.content_height()));
  168. if (!should_treat_max_width_as_none(cell.box, available_space.width))
  169. max_width = min(max_width, computed_values.max_width().to_px(cell.box, containing_block.content_width()));
  170. if (computed_values.height().is_percentage()) {
  171. m_rows[cell.row_index].type = SizeType::Percent;
  172. m_rows[cell.row_index].percentage_height = max(m_rows[cell.row_index].percentage_height, computed_values.height().percentage().value());
  173. } else {
  174. m_rows[cell.row_index].type = SizeType::Pixel;
  175. }
  176. if (computed_values.width().is_percentage()) {
  177. m_columns[cell.column_index].type = SizeType::Percent;
  178. m_columns[cell.column_index].percentage_width = max(m_columns[cell.column_index].percentage_width, computed_values.width().percentage().value());
  179. } else {
  180. m_columns[cell.column_index].type = SizeType::Pixel;
  181. if (computed_values.width().is_length())
  182. m_columns[cell.column_index].is_constrained = true;
  183. }
  184. auto cell_intrinsic_height_offsets = padding_top + padding_bottom + border_top + border_bottom;
  185. cell.min_height = min_height + cell_intrinsic_height_offsets;
  186. cell.max_height = max(max(height, min_height), max_height) + cell_intrinsic_height_offsets;
  187. auto cell_intrinsic_width_offsets = padding_left + padding_right + border_left + border_right;
  188. cell.min_width = min_width + cell_intrinsic_width_offsets;
  189. cell.max_width = max(max(width, min_width), max_width) + cell_intrinsic_width_offsets;
  190. }
  191. }
  192. template<>
  193. void TableFormattingContext::initialize_table_measures<TableFormattingContext::Row>()
  194. {
  195. auto const& containing_block = m_state.get(*table_wrapper().containing_block());
  196. for (auto& cell : m_cells) {
  197. auto const& computed_values = cell.box->computed_values();
  198. if (cell.row_span == 1) {
  199. // FIXME: Implement intrinsic percentage width of a column based on cells of span up to 1.
  200. auto specified_height = m_rows[cell.row_index].type == SizeType::Pixel
  201. ? computed_values.height().to_px(cell.box, containing_block.content_height())
  202. : 0;
  203. // https://www.w3.org/TR/css-tables-3/#row-layout makes specified cell height part of the initialization formula for row table measures:
  204. // This is done by running the same algorithm as the column measurement, with the span=1 value being initialized (for min-content) with
  205. // the largest of the resulting height of the previous row layout, the height specified on the corresponding table-row (if any), and
  206. // the largest height specified on cells that span this row only (the algorithm starts by considering cells of span 2 on top of that assignment).
  207. m_rows[cell.row_index].min_size = max(m_rows[cell.row_index].min_size, max(cell.min_height, specified_height));
  208. m_rows[cell.row_index].max_size = max(m_rows[cell.row_index].max_size, cell.max_height);
  209. }
  210. }
  211. }
  212. template<>
  213. void TableFormattingContext::initialize_table_measures<TableFormattingContext::Column>()
  214. {
  215. for (auto& cell : m_cells) {
  216. if (cell.column_span == 1) {
  217. m_columns[cell.column_index].min_size = max(m_columns[cell.column_index].min_size, cell.min_width);
  218. m_columns[cell.column_index].max_size = max(m_columns[cell.column_index].max_size, cell.max_width);
  219. }
  220. }
  221. }
  222. template<class RowOrColumn>
  223. void TableFormattingContext::compute_table_measures()
  224. {
  225. initialize_table_measures<RowOrColumn>();
  226. auto& rows_or_columns = table_rows_or_columns<RowOrColumn>();
  227. size_t max_cell_span = 1;
  228. for (auto& cell : m_cells) {
  229. max_cell_span = max(max_cell_span, cell_span<RowOrColumn>(cell));
  230. }
  231. for (size_t current_span = 2; current_span <= max_cell_span; current_span++) {
  232. // https://www.w3.org/TR/css-tables-3/#min-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  233. Vector<Vector<CSSPixels>> cell_min_contributions_by_rc_index;
  234. cell_min_contributions_by_rc_index.resize(rows_or_columns.size());
  235. // https://www.w3.org/TR/css-tables-3/#max-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  236. Vector<Vector<CSSPixels>> cell_max_contributions_by_rc_index;
  237. cell_max_contributions_by_rc_index.resize(rows_or_columns.size());
  238. for (auto& cell : m_cells) {
  239. auto cell_span_value = cell_span<RowOrColumn>(cell);
  240. if (cell_span_value == current_span) {
  241. // Define the baseline max-content size as the sum of the max-content sizes based on cells of span up to N-1 of all columns that the cell spans.
  242. CSSPixels baseline_max_content_size = 0;
  243. auto cell_start_rc_index = cell_index<RowOrColumn>(cell);
  244. auto cell_end_rc_index = cell_start_rc_index + cell_span_value;
  245. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  246. baseline_max_content_size += rows_or_columns[rc_index].max_size;
  247. }
  248. // Define the baseline border spacing as the sum of the horizontal border-spacing for any columns spanned by the cell, other than the one in which the cell originates.
  249. auto baseline_border_spacing = border_spacing<RowOrColumn>() * (cell_span_value - 1);
  250. // Add contribution from all rows / columns, since we've weighted the gap to the desired spanned size by the the
  251. // ratio of the max-content size based on cells of span up to N-1 of the row / column to the baseline max-content width.
  252. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  253. // The contribution of the cell is the sum of:
  254. // the min-content size of the column based on cells of span up to N-1
  255. auto cell_min_contribution = rows_or_columns[rc_index].min_size;
  256. // and the product of:
  257. // - the ratio of the max-content size based on cells of span up to N-1 of the column to the baseline max-content size
  258. // - the outer min-content size of the cell minus the baseline max-content size and baseline border spacing, or 0 if this is negative
  259. cell_min_contribution += (rows_or_columns[rc_index].max_size / baseline_max_content_size)
  260. * max(CSSPixels(0), cell_min_size<RowOrColumn>(cell) - baseline_max_content_size - baseline_border_spacing);
  261. // The contribution of the cell is the sum of:
  262. // the max-content size of the column based on cells of span up to N-1
  263. auto cell_max_contribution = rows_or_columns[rc_index].max_size;
  264. // and the product of:
  265. // - the ratio of the max-content size based on cells of span up to N-1 of the column to the baseline max-content size
  266. // - the outer max-content size of the cell minus the baseline max-content size and the baseline border spacing, or 0 if this is negative
  267. cell_max_contribution += (rows_or_columns[rc_index].max_size / baseline_max_content_size)
  268. * max(CSSPixels(0), cell_max_size<RowOrColumn>(cell) - baseline_max_content_size - baseline_border_spacing);
  269. cell_min_contributions_by_rc_index[rc_index].append(cell_min_contribution);
  270. cell_max_contributions_by_rc_index[rc_index].append(cell_max_contribution);
  271. }
  272. }
  273. }
  274. for (size_t rc_index = 0; rc_index < rows_or_columns.size(); rc_index++) {
  275. // min-content size of a row / column based on cells of span up to N (N > 1) is
  276. // the largest of the min-content size of the row / column based on cells of span up to N-1 and
  277. // the contributions of the cells in the row / column whose rowSpan / colSpan is N
  278. for (auto min_contribution : cell_min_contributions_by_rc_index[rc_index])
  279. rows_or_columns[rc_index].min_size = max(rows_or_columns[rc_index].min_size, min_contribution);
  280. // max-content size of a row / column based on cells of span up to N (N > 1) is
  281. // the largest of the max-content size based on cells of span up to N-1 and the contributions of
  282. // the cells in the row / column whose rowSpan / colSpan is N
  283. for (auto max_contribution : cell_max_contributions_by_rc_index[rc_index])
  284. rows_or_columns[rc_index].max_size = max(rows_or_columns[rc_index].max_size, max_contribution);
  285. }
  286. }
  287. }
  288. CSSPixels TableFormattingContext::compute_capmin()
  289. {
  290. // The caption width minimum (CAPMIN) is the largest of the table captions min-content contribution:
  291. // https://drafts.csswg.org/css-tables-3/#computing-the-table-width
  292. CSSPixels capmin = 0;
  293. for (auto* child = table_box().first_child(); child; child = child->next_sibling()) {
  294. if (!child->display().is_table_caption()) {
  295. continue;
  296. }
  297. VERIFY(child->is_box());
  298. capmin = max(calculate_min_content_width(static_cast<Box const&>(*child)), capmin);
  299. }
  300. return capmin;
  301. }
  302. void TableFormattingContext::compute_table_width()
  303. {
  304. // https://drafts.csswg.org/css-tables-3/#computing-the-table-width
  305. auto& table_box_state = m_state.get_mutable(table_box());
  306. auto& computed_values = table_box().computed_values();
  307. CSSPixels width_of_table_containing_block = m_state.get(*table_box().containing_block()).content_width();
  308. // Percentages on 'width' and 'height' on the table are relative to the table wrapper box's containing block,
  309. // not the table wrapper box itself.
  310. CSSPixels width_of_table_wrapper_containing_block = m_state.get(*table_wrapper().containing_block()).content_width();
  311. // Compute undistributable space due to border spacing: https://www.w3.org/TR/css-tables-3/#computing-undistributable-space.
  312. auto undistributable_space = (m_columns.size() + 1) * border_spacing_horizontal();
  313. // The row/column-grid width minimum (GRIDMIN) width is the sum of the min-content width
  314. // of all the columns plus cell spacing or borders.
  315. CSSPixels grid_min = 0.0f;
  316. for (auto& column : m_columns) {
  317. grid_min += column.min_size;
  318. }
  319. grid_min += undistributable_space;
  320. // The row/column-grid width maximum (GRIDMAX) width is the sum of the max-content width
  321. // of all the columns plus cell spacing or borders.
  322. CSSPixels grid_max = 0.0f;
  323. for (auto& column : m_columns) {
  324. grid_max += column.max_size;
  325. }
  326. grid_max += undistributable_space;
  327. // The used min-width of a table is the greater of the resolved min-width, CAPMIN, and GRIDMIN.
  328. auto used_min_width = max(grid_min, compute_capmin());
  329. if (!computed_values.min_width().is_auto()) {
  330. used_min_width = max(used_min_width, computed_values.min_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  331. }
  332. CSSPixels used_width;
  333. if (computed_values.width().is_auto()) {
  334. // If the table-root has 'width: auto', the used width is the greater of
  335. // min(GRIDMAX, the table’s containing block width), the used min-width of the table.
  336. used_width = max(min(grid_max, width_of_table_containing_block), used_min_width);
  337. } else {
  338. // If the table-root’s width property has a computed value (resolving to
  339. // resolved-table-width) other than auto, the used width is the greater
  340. // of resolved-table-width, and the used min-width of the table.
  341. CSSPixels resolved_table_width = computed_values.width().to_px(table_box(), width_of_table_wrapper_containing_block);
  342. // Since used_width is content width, we need to subtract the border spacing from the specified width for a consistent comparison.
  343. used_width = max(resolved_table_width - table_box_state.border_box_left() - table_box_state.border_box_right(), used_min_width);
  344. if (!should_treat_max_width_as_none(table_box(), m_available_space->width))
  345. used_width = min(used_width, computed_values.max_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  346. }
  347. table_box_state.set_content_width(used_width);
  348. }
  349. void TableFormattingContext::distribute_width_to_columns()
  350. {
  351. // Implements https://www.w3.org/TR/css-tables-3/#width-distribution-algorithm
  352. // The total horizontal border spacing is defined for each table:
  353. // - For tables laid out in separated-borders mode containing at least one column, the horizontal component of the computed value of the border-spacing property times one plus the number of columns in the table
  354. // - Otherwise, 0
  355. auto total_horizontal_border_spacing = m_columns.is_empty() ? 0 : (m_columns.size() + 1) * border_spacing_horizontal();
  356. // The assignable table width is the used width of the table minus the total horizontal border spacing (if any).
  357. // This is the width that we will be able to allocate to the columns.
  358. CSSPixels available_width = m_state.get(table_box()).content_width() - total_horizontal_border_spacing;
  359. auto columns_total_used_width = [&]() {
  360. CSSPixels total_used_width = 0;
  361. for (auto& column : m_columns) {
  362. total_used_width += column.used_width;
  363. }
  364. return total_used_width;
  365. };
  366. auto column_preferred_width = [&](Column& column) {
  367. switch (column.type) {
  368. case SizeType::Percent: {
  369. return max(column.min_size, column.percentage_width / 100 * available_width);
  370. }
  371. case SizeType::Pixel:
  372. case SizeType::Auto: {
  373. return column.max_size;
  374. }
  375. default: {
  376. VERIFY_NOT_REACHED();
  377. }
  378. }
  379. };
  380. auto expand_columns_to_fill_available_width = [&](SizeType column_type) {
  381. CSSPixels remaining_available_width = available_width;
  382. CSSPixels total_preferred_width_increment = 0;
  383. for (auto& column : m_columns) {
  384. remaining_available_width -= column.used_width;
  385. if (column.type == column_type) {
  386. total_preferred_width_increment += column_preferred_width(column) - column.min_size;
  387. }
  388. }
  389. if (total_preferred_width_increment == 0)
  390. return;
  391. for (auto& column : m_columns) {
  392. if (column.type == column_type) {
  393. CSSPixels preferred_width_increment = column_preferred_width(column) - column.min_size;
  394. column.used_width += preferred_width_increment * remaining_available_width / total_preferred_width_increment;
  395. }
  396. }
  397. };
  398. auto shrink_columns_to_fit_available_width = [&](SizeType column_type) {
  399. for (auto& column : m_columns) {
  400. if (column.type == column_type)
  401. column.used_width = column.min_size;
  402. }
  403. expand_columns_to_fill_available_width(column_type);
  404. };
  405. for (auto& column : m_columns) {
  406. column.used_width = column.min_size;
  407. }
  408. for (auto& column : m_columns) {
  409. if (column.type == SizeType::Percent) {
  410. column.used_width = max(column.min_size, column.percentage_width / 100 * available_width);
  411. }
  412. }
  413. if (columns_total_used_width() > available_width) {
  414. shrink_columns_to_fit_available_width(SizeType::Percent);
  415. return;
  416. }
  417. for (auto& column : m_columns) {
  418. if (column.type == SizeType::Pixel) {
  419. column.used_width = column.max_size;
  420. }
  421. }
  422. if (columns_total_used_width() > available_width) {
  423. shrink_columns_to_fit_available_width(SizeType::Pixel);
  424. return;
  425. }
  426. if (columns_total_used_width() < available_width) {
  427. expand_columns_to_fill_available_width(SizeType::Auto);
  428. }
  429. if (columns_total_used_width() < available_width) {
  430. expand_columns_to_fill_available_width(SizeType::Pixel);
  431. }
  432. if (columns_total_used_width() < available_width) {
  433. expand_columns_to_fill_available_width(SizeType::Percent);
  434. }
  435. // Implements steps 1 and 2 of https://www.w3.org/TR/css-tables-3/#distributing-width-to-columns
  436. // FIXME: Implement steps 3-5 as well, which distribute excess width to constrained columns.
  437. if (columns_total_used_width() < available_width) {
  438. // NOTE: if all columns got their max width and there is still width to distribute left
  439. // it should be assigned to columns proportionally to their max width
  440. CSSPixels grid_max = 0.0f;
  441. size_t unconstrained_column_count = 0;
  442. for (auto& column : m_columns) {
  443. if (column.is_constrained) {
  444. continue;
  445. }
  446. grid_max += column.max_size;
  447. ++unconstrained_column_count;
  448. }
  449. auto width_to_distribute = available_width - columns_total_used_width();
  450. if (grid_max == 0) {
  451. // If total max width of columns is zero then divide distributable width equally among them
  452. auto column_width = width_to_distribute / unconstrained_column_count;
  453. for (auto& column : m_columns) {
  454. if (column.is_constrained)
  455. continue;
  456. column.used_width = column_width;
  457. }
  458. } else {
  459. // Distribute width to columns proportionally to their max width
  460. for (auto& column : m_columns) {
  461. if (column.is_constrained)
  462. continue;
  463. column.used_width += width_to_distribute * column.max_size / grid_max;
  464. }
  465. }
  466. }
  467. }
  468. void TableFormattingContext::compute_table_height(LayoutMode layout_mode)
  469. {
  470. // First pass of row height calculation:
  471. for (auto& row : m_rows) {
  472. auto row_computed_height = row.box->computed_values().height();
  473. if (row_computed_height.is_length()) {
  474. auto height_of_containing_block = m_state.get(*row.box->containing_block()).content_height();
  475. auto row_used_height = row_computed_height.to_px(row.box, height_of_containing_block);
  476. row.base_height = max(row.base_height, row_used_height);
  477. }
  478. }
  479. // First pass of cells layout:
  480. for (auto& cell : m_cells) {
  481. auto& row = m_rows[cell.row_index];
  482. auto& cell_state = m_state.get_mutable(cell.box);
  483. CSSPixels span_width = 0;
  484. for (size_t i = 0; i < cell.column_span; ++i)
  485. span_width += m_columns[cell.column_index + i].used_width;
  486. auto width_of_containing_block = m_state.get(*cell.box->containing_block()).content_width();
  487. auto width_of_containing_block_as_length = CSS::Length::make_px(width_of_containing_block);
  488. auto height_of_containing_block = m_state.get(*cell.box->containing_block()).content_height();
  489. auto height_of_containing_block_as_length = CSS::Length::make_px(height_of_containing_block);
  490. cell_state.padding_top = cell.box->computed_values().padding().top().to_px(cell.box, width_of_containing_block);
  491. cell_state.padding_bottom = cell.box->computed_values().padding().bottom().to_px(cell.box, width_of_containing_block);
  492. cell_state.padding_left = cell.box->computed_values().padding().left().to_px(cell.box, width_of_containing_block);
  493. cell_state.padding_right = cell.box->computed_values().padding().right().to_px(cell.box, width_of_containing_block);
  494. if (cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Separate) {
  495. cell_state.border_top = cell.box->computed_values().border_top().width;
  496. cell_state.border_bottom = cell.box->computed_values().border_bottom().width;
  497. cell_state.border_left = cell.box->computed_values().border_left().width;
  498. cell_state.border_right = cell.box->computed_values().border_right().width;
  499. }
  500. auto cell_computed_height = cell.box->computed_values().height();
  501. if (cell_computed_height.is_length()) {
  502. auto cell_used_height = cell_computed_height.to_px(cell.box, height_of_containing_block);
  503. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  504. row.base_height = max(row.base_height, cell_used_height);
  505. }
  506. // Compute cell width as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  507. // The position of any table-cell, table-track, or table-track-group box within the table is defined as the rectangle whose width/height is the sum of:
  508. // - the widths/heights of all spanned visible columns/rows
  509. // - the horizontal/vertical border-spacing times the amount of spanned visible columns/rows minus one
  510. // FIXME: Account for visibility.
  511. cell_state.set_content_width(span_width - cell_state.border_box_left() - cell_state.border_box_right() + (cell.column_span - 1) * border_spacing_horizontal());
  512. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  513. cell_state.set_content_height(independent_formatting_context->automatic_content_height());
  514. independent_formatting_context->parent_context_did_dimension_child_root_box();
  515. }
  516. cell.baseline = box_baseline(cell.box);
  517. // Implements https://www.w3.org/TR/css-tables-3/#computing-the-table-height
  518. // The minimum height of a row is the maximum of:
  519. // - the computed height (if definite, percentages being considered 0px) of its corresponding table-row (if nay)
  520. // - the computed height of each cell spanning the current row exclusively (if definite, percentages being treated as 0px), and
  521. // - the minimum height (ROWMIN) required by the cells spanning the row.
  522. // Note that we've already applied the first rule at the top of the method.
  523. if (cell.row_span == 1) {
  524. row.base_height = max(row.base_height, cell_state.border_box_height());
  525. }
  526. row.base_height = max(row.base_height, m_rows[cell.row_index].min_size);
  527. row.baseline = max(row.baseline, cell.baseline);
  528. }
  529. CSSPixels sum_rows_height = 0;
  530. for (auto& row : m_rows) {
  531. sum_rows_height += row.base_height;
  532. }
  533. m_table_height = sum_rows_height;
  534. if (!table_box().computed_values().height().is_auto()) {
  535. // If the table has a height property with a value other than auto, it is treated as a minimum height for the
  536. // table grid, and will eventually be distributed to the height of the rows if their collective minimum height
  537. // ends up smaller than this number.
  538. CSSPixels height_of_table_containing_block = m_state.get(*table_wrapper().containing_block()).content_height();
  539. auto specified_table_height = table_box().computed_values().height().to_px(table_box(), height_of_table_containing_block);
  540. auto const& table_state = m_state.get(table_box());
  541. m_table_height = max(m_table_height, specified_table_height - table_state.border_box_top() - table_state.border_box_bottom());
  542. }
  543. for (auto& row : m_rows) {
  544. // Reference size is the largest of
  545. // - its initial base height and
  546. // - its new base height (the one evaluated during the second layout pass, where percentages used in
  547. // rowgroups/rows/cells' specified heights were resolved according to the table height, instead of
  548. // being ignored as 0px).
  549. // Assign reference size to base size. Later reference size might change to largee value during
  550. // second pass of rows layout.
  551. row.reference_height = row.base_height;
  552. }
  553. // Second pass of rows height calculation:
  554. // At this point percentage row height can be resolved because final table height is calculated.
  555. for (auto& row : m_rows) {
  556. auto row_computed_height = row.box->computed_values().height();
  557. if (row_computed_height.is_percentage()) {
  558. auto row_used_height = row_computed_height.to_px(row.box, m_table_height);
  559. row.reference_height = max(row.reference_height, row_used_height);
  560. } else {
  561. continue;
  562. }
  563. }
  564. // Second pass cells layout:
  565. // At this point percantage cell height can be resolved because final table heigh is calculated.
  566. for (auto& cell : m_cells) {
  567. auto& row = m_rows[cell.row_index];
  568. auto& cell_state = m_state.get_mutable(cell.box);
  569. CSSPixels span_width = 0;
  570. for (size_t i = 0; i < cell.column_span; ++i)
  571. span_width += m_columns[cell.column_index + i].used_width;
  572. auto cell_computed_height = cell.box->computed_values().height();
  573. if (cell_computed_height.is_percentage()) {
  574. auto cell_used_height = cell_computed_height.to_px(cell.box, m_table_height);
  575. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  576. row.reference_height = max(row.reference_height, cell_used_height);
  577. } else {
  578. continue;
  579. }
  580. cell_state.set_content_width(span_width - cell_state.border_box_left() - cell_state.border_box_right() + (cell.column_span - 1) * border_spacing_horizontal());
  581. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  582. independent_formatting_context->parent_context_did_dimension_child_root_box();
  583. }
  584. cell.baseline = box_baseline(cell.box);
  585. row.reference_height = max(row.reference_height, cell_state.border_box_height());
  586. row.baseline = max(row.baseline, cell.baseline);
  587. }
  588. }
  589. void TableFormattingContext::distribute_height_to_rows()
  590. {
  591. CSSPixels sum_reference_height = 0;
  592. for (auto& row : m_rows) {
  593. sum_reference_height += row.reference_height;
  594. }
  595. if (sum_reference_height == 0)
  596. return;
  597. Vector<Row&> rows_with_auto_height;
  598. for (auto& row : m_rows) {
  599. if (row.box->computed_values().height().is_auto()) {
  600. rows_with_auto_height.append(row);
  601. }
  602. }
  603. if (m_table_height <= sum_reference_height) {
  604. // If the table height is equal or smaller than sum of reference sizes, the final height assigned to each row
  605. // will be the weighted mean of the base and the reference size that yields the correct total height.
  606. for (auto& row : m_rows) {
  607. auto weight = row.reference_height / sum_reference_height;
  608. auto final_height = m_table_height * weight;
  609. row.final_height = final_height;
  610. }
  611. } else if (rows_with_auto_height.size() > 0) {
  612. // Else, if the table owns any “auto-height” row (a row whose size is only determined by its content size and
  613. // none of the specified heights), each non-auto-height row receives its reference height and auto-height rows
  614. // receive their reference size plus some increment which is equal to the height missing to amount to the
  615. // specified table height divided by the amount of such rows.
  616. for (auto& row : m_rows) {
  617. row.final_height = row.reference_height;
  618. }
  619. auto auto_height_rows_increment = (m_table_height - sum_reference_height) / rows_with_auto_height.size();
  620. for (auto& row : rows_with_auto_height) {
  621. row.final_height += auto_height_rows_increment;
  622. }
  623. } else {
  624. // Else, all rows receive their reference size plus some increment which is equal to the height missing to
  625. // amount to the specified table height divided by the amount of rows.
  626. auto increment = (m_table_height - sum_reference_height) / m_rows.size();
  627. for (auto& row : m_rows) {
  628. row.final_height = row.reference_height + increment;
  629. }
  630. }
  631. // Add undistributable space due to border spacing: https://www.w3.org/TR/css-tables-3/#computing-undistributable-space.
  632. m_table_height += (m_rows.size() + 1) * border_spacing_vertical();
  633. }
  634. void TableFormattingContext::position_row_boxes()
  635. {
  636. auto const& table_state = m_state.get(table_box());
  637. CSSPixels row_top_offset = table_state.offset.y() + table_state.padding_top + border_spacing_vertical();
  638. CSSPixels row_left_offset = table_state.border_left + table_state.padding_left + border_spacing_horizontal();
  639. for (size_t y = 0; y < m_rows.size(); y++) {
  640. auto& row = m_rows[y];
  641. auto& row_state = m_state.get_mutable(row.box);
  642. CSSPixels row_width = 0.0f;
  643. for (auto& column : m_columns) {
  644. row_width += column.used_width;
  645. }
  646. row_state.set_content_height(row.final_height);
  647. row_state.set_content_width(row_width);
  648. row_state.set_content_x(row_left_offset);
  649. row_state.set_content_y(row_top_offset);
  650. row_top_offset += row_state.content_height();
  651. }
  652. CSSPixels row_group_top_offset = table_state.border_top + table_state.padding_top;
  653. CSSPixels row_group_left_offset = table_state.border_left + table_state.padding_left;
  654. for_each_child_box_matching(table_box(), is_table_row_group, [&](auto& row_group_box) {
  655. CSSPixels row_group_height = 0.0f;
  656. CSSPixels row_group_width = 0.0f;
  657. auto& row_group_box_state = m_state.get_mutable(row_group_box);
  658. row_group_box_state.set_content_x(row_group_left_offset);
  659. row_group_box_state.set_content_y(row_group_top_offset);
  660. for_each_child_box_matching(row_group_box, is_table_row, [&](auto& row) {
  661. auto const& row_state = m_state.get(row);
  662. row_group_height += row_state.border_box_height();
  663. row_group_width = max(row_group_width, row_state.border_box_width());
  664. });
  665. row_group_box_state.set_content_height(row_group_height);
  666. row_group_box_state.set_content_width(row_group_width);
  667. row_group_top_offset += row_group_height;
  668. });
  669. auto total_content_height = max(row_top_offset, row_group_top_offset) - table_state.offset.y() - table_state.padding_top;
  670. // The height of a table is the sum of the row heights plus any cell spacing or borders.
  671. // Note that we've already added one vertical border-spacing to row_top_offset, so it's sufficient to multiply it by row count here.
  672. total_content_height += m_rows.size() * border_spacing_vertical();
  673. m_table_height = max(total_content_height, m_table_height);
  674. }
  675. void TableFormattingContext::position_cell_boxes()
  676. {
  677. CSSPixels left_column_offset = 0;
  678. for (auto& column : m_columns) {
  679. column.left_offset = left_column_offset;
  680. left_column_offset += column.used_width;
  681. }
  682. for (auto& cell : m_cells) {
  683. auto& cell_state = m_state.get_mutable(cell.box);
  684. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  685. CSSPixels const cell_border_box_height = cell_state.content_height() + cell_state.border_box_top() + cell_state.border_box_bottom();
  686. CSSPixels const row_content_height = compute_row_content_height(cell);
  687. auto const& vertical_align = cell.box->computed_values().vertical_align();
  688. // The following image shows various alignment lines of a row:
  689. // https://www.w3.org/TR/css-tables-3/images/cell-align-explainer.png
  690. if (vertical_align.has<CSS::VerticalAlign>()) {
  691. auto height_diff = row_content_height - cell_border_box_height;
  692. switch (vertical_align.get<CSS::VerticalAlign>()) {
  693. case CSS::VerticalAlign::Middle: {
  694. cell_state.padding_top += height_diff / 2;
  695. cell_state.padding_bottom += height_diff / 2;
  696. break;
  697. }
  698. case CSS::VerticalAlign::Top: {
  699. cell_state.padding_bottom += height_diff;
  700. break;
  701. }
  702. case CSS::VerticalAlign::Bottom: {
  703. cell_state.padding_top += height_diff;
  704. break;
  705. }
  706. case CSS::VerticalAlign::Baseline: {
  707. cell_state.padding_top += m_rows[cell.row_index].baseline - cell.baseline;
  708. cell_state.padding_bottom += height_diff;
  709. break;
  710. }
  711. default:
  712. VERIFY_NOT_REACHED();
  713. }
  714. }
  715. // Compute cell position as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  716. // left/top location is the sum of:
  717. // - for top: the height reserved for top captions (including margins), if any
  718. // - the padding-left/padding-top and border-left-width/border-top-width of the table
  719. // FIXME: Account for visibility.
  720. cell_state.offset = row_state.offset.translated(
  721. cell_state.border_box_left() + m_columns[cell.column_index].left_offset + cell.column_index * border_spacing_horizontal(),
  722. cell_state.border_box_top() + cell.row_index * border_spacing_vertical());
  723. }
  724. }
  725. static const CSS::BorderData& winning_border_style(const CSS::BorderData& a, const CSS::BorderData& b)
  726. {
  727. // Implements steps 1, 2 and 3 of border conflict resolution algorithm.
  728. static HashMap<CSS::LineStyle, unsigned> const line_style_score = {
  729. { CSS::LineStyle::Inset, 0 },
  730. { CSS::LineStyle::Groove, 1 },
  731. { CSS::LineStyle::Outset, 2 },
  732. { CSS::LineStyle::Ridge, 3 },
  733. { CSS::LineStyle::Dotted, 4 },
  734. { CSS::LineStyle::Dashed, 5 },
  735. { CSS::LineStyle::Solid, 6 },
  736. { CSS::LineStyle::Double, 7 },
  737. };
  738. if (a.line_style == CSS::LineStyle::Hidden) {
  739. return a;
  740. }
  741. if (b.line_style == CSS::LineStyle::Hidden) {
  742. return b;
  743. }
  744. if (a.line_style == CSS::LineStyle::None) {
  745. return b;
  746. }
  747. if (b.line_style == CSS::LineStyle::None) {
  748. return a;
  749. }
  750. if (a.width > b.width) {
  751. return a;
  752. } else if (a.width < b.width) {
  753. return b;
  754. }
  755. if (*line_style_score.get(a.line_style) > *line_style_score.get(b.line_style)) {
  756. return a;
  757. } else if (*line_style_score.get(a.line_style) < *line_style_score.get(b.line_style)) {
  758. return b;
  759. }
  760. return a;
  761. }
  762. void TableFormattingContext::border_conflict_resolution()
  763. {
  764. // Partially implements border conflict resolution, as described in
  765. // https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution
  766. BorderConflictFinder finder(this);
  767. for (auto& cell : m_cells) {
  768. if (cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Separate) {
  769. continue;
  770. }
  771. // Execute steps 1, 2 and 3 of the algorithm for each edge.
  772. Painting::BordersData override_borders_data;
  773. auto const& cell_style = cell.box->computed_values();
  774. auto& cell_state = m_state.get_mutable(cell.box);
  775. for (auto const conflicting_element : finder.conflicting_elements(cell, ConflictingEdge::Left)) {
  776. auto const& other_style = conflicting_element->computed_values();
  777. override_borders_data.left = winning_border_style(cell_style.border_left(), other_style.border_left());
  778. cell_state.border_left = override_borders_data.left.width;
  779. }
  780. for (auto const conflicting_element : finder.conflicting_elements(cell, ConflictingEdge::Right)) {
  781. auto const& other_style = conflicting_element->computed_values();
  782. override_borders_data.right = winning_border_style(cell_style.border_right(), other_style.border_right());
  783. cell_state.border_right = override_borders_data.right.width;
  784. }
  785. for (auto const conflicting_element : finder.conflicting_elements(cell, ConflictingEdge::Top)) {
  786. auto const& other_style = conflicting_element->computed_values();
  787. override_borders_data.top = winning_border_style(cell_style.border_top(), other_style.border_top());
  788. cell_state.border_top = override_borders_data.top.width;
  789. }
  790. for (auto const conflicting_element : finder.conflicting_elements(cell, ConflictingEdge::Bottom)) {
  791. auto const& other_style = conflicting_element->computed_values();
  792. override_borders_data.bottom = winning_border_style(cell_style.border_bottom(), other_style.border_bottom());
  793. cell_state.border_bottom = override_borders_data.bottom.width;
  794. }
  795. // FIXME: 4. If border styles differ only in color, then a style set on a cell wins over one on a row, which wins over a
  796. // row group, column, column group and, lastly, table. When two elements of the same type conflict, then the one
  797. // further to the left (if the table's 'direction' is 'ltr'; right, if it is 'rtl') and further to the top wins.
  798. cell_state.set_override_borders_data(override_borders_data);
  799. }
  800. }
  801. CSSPixels TableFormattingContext::compute_row_content_height(Cell const& cell) const
  802. {
  803. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  804. if (cell.row_span == 1) {
  805. return row_state.content_height();
  806. }
  807. // The height of a cell is the sum of all spanned rows, as described in
  808. // https://www.w3.org/TR/css-tables-3/#bounding-box-assignment
  809. // When the row span is greater than 1, the borders of inner rows within the span have to be
  810. // included in the content height of the spanning cell. First top and final bottom borders are
  811. // excluded to be consistent with the handling of row span 1 case above, which uses the content
  812. // height (no top and bottom borders) of the row.
  813. CSSPixels span_height = 0;
  814. for (size_t i = 0; i < cell.row_span; ++i) {
  815. auto const& row_state = m_state.get(m_rows[cell.row_index + i].box);
  816. if (i == 0) {
  817. span_height += row_state.content_height() + row_state.border_box_bottom();
  818. } else if (i == cell.row_span - 1) {
  819. span_height += row_state.border_box_top() + row_state.content_height();
  820. } else {
  821. span_height += row_state.border_box_height();
  822. }
  823. }
  824. // Compute cell height as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  825. // width/height is the sum of:
  826. // - the widths/heights of all spanned visible columns/rows
  827. // - the horizontal/vertical border-spacing times the amount of spanned visible columns/rows minus one
  828. // FIXME: Account for visibility.
  829. span_height += (cell.row_span - 1) * border_spacing_vertical();
  830. return span_height;
  831. }
  832. TableFormattingContext::BorderConflictFinder::BorderConflictFinder(TableFormattingContext const* context)
  833. : m_context(context)
  834. {
  835. collect_conflicting_col_elements();
  836. }
  837. void TableFormattingContext::BorderConflictFinder::collect_conflicting_col_elements()
  838. {
  839. m_col_elements_by_index.resize(m_context->m_columns.size());
  840. for (auto* child = m_context->table_box().first_child(); child; child = child->next_sibling()) {
  841. if (!child->display().is_table_column_group()) {
  842. continue;
  843. }
  844. size_t column_index = 0;
  845. for (auto* child_of_column_group = child->first_child(); child_of_column_group; child_of_column_group = child_of_column_group->next_sibling()) {
  846. VERIFY(child_of_column_group->display().is_table_column());
  847. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*child_of_column_group->dom_node());
  848. unsigned span = col_node.attribute(HTML::AttributeNames::span).to_uint().value_or(1);
  849. for (size_t i = column_index; i < column_index + span; ++i) {
  850. m_col_elements_by_index[i] = child_of_column_group;
  851. }
  852. column_index += span;
  853. }
  854. }
  855. }
  856. Vector<Node const*> TableFormattingContext::BorderConflictFinder::conflicting_elements(Cell const& cell, TableFormattingContext::ConflictingEdge edge) const
  857. {
  858. // FIXME: Conflicting elements can be cells, rows, row groups, columns, column groups, and the table itself,
  859. // but we only consider 'col' elements in a 'colgroup', the table and the cell itself for now.
  860. Vector<Node const*> result = { cell.box };
  861. auto is_top = cell.row_index == 0;
  862. auto is_left = cell.column_index == 0;
  863. auto is_right = cell.column_index == m_context->m_columns.size() - 1;
  864. auto is_bottom = cell.row_index == m_context->m_rows.size() - 1;
  865. auto conflicts_top_or_bottom = (is_top && edge == ConflictingEdge::Top) || (is_bottom && edge == ConflictingEdge::Bottom);
  866. if (conflicts_top_or_bottom || (is_left && edge == ConflictingEdge::Left) || (is_right && edge == ConflictingEdge::Right)) {
  867. result.append(&m_context->table_box());
  868. }
  869. if (m_col_elements_by_index[cell.column_index] && (conflicts_top_or_bottom || edge == ConflictingEdge::Left || edge == ConflictingEdge::Right)) {
  870. result.append(m_col_elements_by_index[cell.column_index]);
  871. }
  872. return result;
  873. }
  874. void TableFormattingContext::run(Box const& box, LayoutMode layout_mode, AvailableSpace const& available_space)
  875. {
  876. m_available_space = available_space;
  877. auto total_captions_height = run_caption_layout(layout_mode, CSS::CaptionSide::Top);
  878. // Determine the number of rows/columns the table requires.
  879. calculate_row_column_grid(box);
  880. border_conflict_resolution();
  881. // Compute the minimum width of each column.
  882. compute_cell_measures(available_space);
  883. compute_table_measures<Column>();
  884. // https://www.w3.org/TR/css-tables-3/#row-layout
  885. // Since during row layout the specified heights of cells in the row were ignored and cells that were spanning more than one rows
  886. // have not been sized correctly, their height will need to be eventually distributed to the set of rows they spanned. This is done
  887. // by running the same algorithm as the column measurement, with the span=1 value being initialized (for min-content) with the largest
  888. // of the resulting height of the previous row layout, the height specified on the corresponding table-row (if any), and the largest
  889. // height specified on cells that span this row only (the algorithm starts by considering cells of span 2 on top of that assignment).
  890. compute_table_measures<Row>();
  891. // Compute the width of the table.
  892. compute_table_width();
  893. if (available_space.width.is_intrinsic_sizing_constraint() && !available_space.height.is_intrinsic_sizing_constraint()) {
  894. return;
  895. }
  896. // Distribute the width of the table among columns.
  897. distribute_width_to_columns();
  898. compute_table_height(layout_mode);
  899. distribute_height_to_rows();
  900. position_row_boxes();
  901. position_cell_boxes();
  902. m_state.get_mutable(table_box()).set_content_height(m_table_height);
  903. total_captions_height += run_caption_layout(layout_mode, CSS::CaptionSide::Bottom);
  904. // Table captions are positioned between the table margins and its borders (outside the grid box borders) as described in
  905. // https://www.w3.org/TR/css-tables-3/#bounding-box-assignment
  906. // A visual representation of this model can be found at https://www.w3.org/TR/css-tables-3/images/table_container.png
  907. m_state.get_mutable(table_box()).margin_bottom += total_captions_height;
  908. m_automatic_content_height = m_table_height;
  909. }
  910. CSSPixels TableFormattingContext::automatic_content_width() const
  911. {
  912. return greatest_child_width(context_box());
  913. }
  914. CSSPixels TableFormattingContext::automatic_content_height() const
  915. {
  916. return m_automatic_content_height;
  917. }
  918. template<>
  919. size_t TableFormattingContext::cell_span<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  920. {
  921. return cell.row_span;
  922. }
  923. template<>
  924. size_t TableFormattingContext::cell_span<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  925. {
  926. return cell.column_span;
  927. }
  928. template<>
  929. size_t TableFormattingContext::cell_index<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  930. {
  931. return cell.row_index;
  932. }
  933. template<>
  934. size_t TableFormattingContext::cell_index<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  935. {
  936. return cell.column_index;
  937. }
  938. template<>
  939. CSSPixels TableFormattingContext::cell_min_size<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  940. {
  941. return cell.min_height;
  942. }
  943. template<>
  944. CSSPixels TableFormattingContext::cell_min_size<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  945. {
  946. return cell.min_width;
  947. }
  948. template<>
  949. CSSPixels TableFormattingContext::cell_max_size<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  950. {
  951. return cell.max_height;
  952. }
  953. template<>
  954. CSSPixels TableFormattingContext::cell_max_size<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  955. {
  956. return cell.max_width;
  957. }
  958. template<>
  959. CSSPixels TableFormattingContext::border_spacing<TableFormattingContext::Row>()
  960. {
  961. return border_spacing_vertical();
  962. }
  963. template<>
  964. CSSPixels TableFormattingContext::border_spacing<TableFormattingContext::Column>()
  965. {
  966. return border_spacing_horizontal();
  967. }
  968. CSSPixels TableFormattingContext::border_spacing_horizontal() const
  969. {
  970. auto const& computed_values = table_box().computed_values();
  971. // When a table is laid out in collapsed-borders mode, the border-spacing of the table-root is ignored (as if it was set to 0px):
  972. // https://www.w3.org/TR/css-tables-3/#collapsed-style-overrides
  973. if (computed_values.border_collapse() == CSS::BorderCollapse::Collapse)
  974. return 0;
  975. return computed_values.border_spacing_horizontal().to_px(table_box());
  976. }
  977. CSSPixels TableFormattingContext::border_spacing_vertical() const
  978. {
  979. auto const& computed_values = table_box().computed_values();
  980. // When a table is laid out in collapsed-borders mode, the border-spacing of the table-root is ignored (as if it was set to 0px):
  981. // https://www.w3.org/TR/css-tables-3/#collapsed-style-overrides
  982. if (computed_values.border_collapse() == CSS::BorderCollapse::Collapse)
  983. return 0;
  984. return computed_values.border_spacing_vertical().to_px(table_box());
  985. }
  986. template<>
  987. Vector<TableFormattingContext::Row>& TableFormattingContext::table_rows_or_columns()
  988. {
  989. return m_rows;
  990. }
  991. template<>
  992. Vector<TableFormattingContext::Column>& TableFormattingContext::table_rows_or_columns()
  993. {
  994. return m_columns;
  995. }
  996. }