TableFormattingContext.cpp 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548
  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/HTML/HTMLTableRowElement.h>
  11. #include <LibWeb/Layout/BlockFormattingContext.h>
  12. #include <LibWeb/Layout/Box.h>
  13. #include <LibWeb/Layout/InlineFormattingContext.h>
  14. #include <LibWeb/Layout/TableFormattingContext.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, Box const& root, FormattingContext* parent)
  34. : FormattingContext(Type::Table, state, root, parent)
  35. {
  36. }
  37. TableFormattingContext::~TableFormattingContext() = default;
  38. static inline bool is_table_row_group(Box const& box)
  39. {
  40. auto const& display = box.display();
  41. return display.is_table_row_group() || display.is_table_header_group() || display.is_table_footer_group();
  42. }
  43. static inline bool is_table_row(Box const& box)
  44. {
  45. return box.display().is_table_row();
  46. }
  47. static inline bool is_table_column_group(Box const& box)
  48. {
  49. return box.display().is_table_column_group();
  50. }
  51. static inline bool is_table_column(Box const& box)
  52. {
  53. return box.display().is_table_column();
  54. }
  55. template<typename Matcher, typename Callback>
  56. static void for_each_child_box_matching(Box const& parent, Matcher matcher, Callback callback)
  57. {
  58. parent.for_each_child_of_type<Box>([&](Box const& child_box) {
  59. if (matcher(child_box))
  60. callback(child_box);
  61. });
  62. }
  63. CSSPixels TableFormattingContext::run_caption_layout(LayoutMode layout_mode, CSS::CaptionSide phase)
  64. {
  65. CSSPixels caption_height = 0;
  66. for (auto* child = table_box().first_child(); child; child = child->next_sibling()) {
  67. if (!child->display().is_table_caption() || child->computed_values().caption_side() != phase) {
  68. continue;
  69. }
  70. // The caption boxes are principal block-level boxes that retain their own content, padding, margin, and border areas,
  71. // and are rendered as normal block boxes inside the table wrapper box, as described in https://www.w3.org/TR/CSS22/tables.html#model
  72. auto caption_context = make<BlockFormattingContext>(m_state, *verify_cast<BlockContainer>(child), this);
  73. caption_context->run(table_box(), layout_mode, *m_available_space);
  74. VERIFY(child->is_box());
  75. auto const& child_box = static_cast<Box const&>(*child);
  76. // FIXME: Since caption only has inline children, BlockFormattingContext doesn't resolve the vertical metrics.
  77. // We need to do it manually here.
  78. caption_context->resolve_vertical_box_model_metrics(child_box);
  79. auto const& caption_state = m_state.get(child_box);
  80. if (phase == CSS::CaptionSide::Top) {
  81. m_state.get_mutable(table_box()).set_content_y(caption_state.margin_box_height());
  82. } else {
  83. m_state.get_mutable(child_box).set_content_y(
  84. m_state.get(table_box()).margin_box_height() + caption_state.margin_box_top());
  85. }
  86. caption_height += caption_state.margin_box_height();
  87. }
  88. return caption_height;
  89. }
  90. void TableFormattingContext::calculate_row_column_grid(Box const& box)
  91. {
  92. // Implements https://html.spec.whatwg.org/multipage/tables.html#forming-a-table
  93. HashMap<GridPosition, bool> grid;
  94. size_t x_width = 0, y_height = 0;
  95. size_t x_current = 0, y_current = 0;
  96. size_t max_cell_x = 0, max_cell_y = 0;
  97. // Implements https://html.spec.whatwg.org/multipage/tables.html#algorithm-for-processing-rows
  98. auto process_row = [&](auto& row) {
  99. if (y_height == y_current)
  100. y_height++;
  101. x_current = 0;
  102. for (auto* child = row.first_child(); child; child = child->next_sibling()) {
  103. if (child->display().is_table_cell()) {
  104. // 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.
  105. while (x_current < x_width && grid.contains(GridPosition { x_current, y_current }))
  106. x_current++;
  107. Box const* box = static_cast<Box const*>(child);
  108. if (x_current == x_width)
  109. x_width++;
  110. size_t colspan = 1, rowspan = 1;
  111. if (box->dom_node() && is<HTML::HTMLTableCellElement>(*box->dom_node())) {
  112. auto const& node = static_cast<HTML::HTMLTableCellElement const&>(*box->dom_node());
  113. colspan = node.col_span();
  114. rowspan = node.row_span();
  115. }
  116. if (x_width < x_current + colspan)
  117. x_width = x_current + colspan;
  118. if (y_height < y_current + rowspan)
  119. y_height = y_current + rowspan;
  120. for (size_t y = y_current; y < y_current + rowspan; y++)
  121. for (size_t x = x_current; x < x_current + colspan; x++)
  122. grid.set(GridPosition { x, y }, true);
  123. m_cells.append(Cell { *box, x_current, y_current, colspan, rowspan });
  124. max_cell_x = max(x_current, max_cell_x);
  125. max_cell_y = max(y_current, max_cell_y);
  126. x_current += colspan;
  127. }
  128. }
  129. m_rows.append(Row { row });
  130. y_current++;
  131. };
  132. for_each_child_box_matching(box, is_table_row_group, [&](auto& row_group_box) {
  133. for_each_child_box_matching(row_group_box, is_table_row, [&](auto& row_box) {
  134. process_row(row_box);
  135. return IterationDecision::Continue;
  136. });
  137. });
  138. for_each_child_box_matching(box, is_table_row, [&](auto& row_box) {
  139. process_row(row_box);
  140. return IterationDecision::Continue;
  141. });
  142. m_columns.resize(x_width);
  143. for (auto& cell : m_cells) {
  144. // Clip spans to the end of the table.
  145. cell.row_span = min(cell.row_span, m_rows.size() - cell.row_index);
  146. cell.column_span = min(cell.column_span, m_columns.size() - cell.column_index);
  147. }
  148. m_cells_by_coordinate.resize(max_cell_y + 1);
  149. for (auto& position_to_cell_row : m_cells_by_coordinate) {
  150. position_to_cell_row.resize(max_cell_x + 1);
  151. }
  152. for (auto const& cell : m_cells) {
  153. m_cells_by_coordinate[cell.row_index][cell.column_index] = cell;
  154. m_columns[cell.column_index].has_originating_cells = true;
  155. }
  156. }
  157. void TableFormattingContext::compute_constrainedness()
  158. {
  159. // Definition of constrainedness: https://www.w3.org/TR/css-tables-3/#constrainedness
  160. size_t column_index = 0;
  161. for_each_child_box_matching(table_box(), is_table_column_group, [&](auto& column_group_box) {
  162. for_each_child_box_matching(column_group_box, is_table_column, [&](auto& column_box) {
  163. auto const& computed_values = column_box.computed_values();
  164. if (!computed_values.width().is_auto() && !computed_values.width().is_percentage()) {
  165. m_columns[column_index].is_constrained = true;
  166. }
  167. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*column_box.dom_node());
  168. unsigned span = col_node.attribute(HTML::AttributeNames::span).to_uint().value_or(1);
  169. column_index += span;
  170. });
  171. });
  172. for (auto& row : m_rows) {
  173. auto const& computed_values = row.box->computed_values();
  174. if (!computed_values.height().is_auto() && !computed_values.height().is_percentage()) {
  175. row.is_constrained = true;
  176. }
  177. }
  178. for (auto& cell : m_cells) {
  179. auto const& computed_values = cell.box->computed_values();
  180. if (!computed_values.width().is_auto() && !computed_values.width().is_percentage()) {
  181. m_columns[cell.column_index].is_constrained = true;
  182. }
  183. if (!computed_values.height().is_auto() && !computed_values.height().is_percentage()) {
  184. m_rows[cell.row_index].is_constrained = true;
  185. }
  186. }
  187. }
  188. void TableFormattingContext::compute_cell_measures(AvailableSpace const& available_space)
  189. {
  190. // Implements https://www.w3.org/TR/css-tables-3/#computing-cell-measures.
  191. auto const& containing_block = m_state.get(*table_wrapper().containing_block());
  192. compute_constrainedness();
  193. for (auto& cell : m_cells) {
  194. auto const& computed_values = cell.box->computed_values();
  195. if (computed_values.width().is_percentage()) {
  196. m_columns[cell.column_index].has_percentage_width = true;
  197. m_columns[cell.column_index].percentage_width = max(m_columns[cell.column_index].percentage_width, computed_values.width().percentage().value());
  198. }
  199. if (computed_values.height().is_percentage()) {
  200. m_rows[cell.row_index].has_percentage_height = true;
  201. m_rows[cell.row_index].percentage_height = max(m_rows[cell.row_index].percentage_height, computed_values.height().percentage().value());
  202. }
  203. }
  204. for (auto& cell : m_cells) {
  205. auto const& computed_values = cell.box->computed_values();
  206. CSSPixels padding_top = computed_values.padding().top().to_px(cell.box, containing_block.content_height());
  207. CSSPixels padding_bottom = computed_values.padding().bottom().to_px(cell.box, containing_block.content_height());
  208. CSSPixels padding_left = computed_values.padding().left().to_px(cell.box, containing_block.content_width());
  209. CSSPixels padding_right = computed_values.padding().right().to_px(cell.box, containing_block.content_width());
  210. auto const& cell_state = m_state.get(cell.box);
  211. auto use_collapsing_borders_model = cell_state.override_borders_data().has_value();
  212. // Implement the collapsing border model https://www.w3.org/TR/CSS22/tables.html#collapsing-borders.
  213. CSSPixels border_top = use_collapsing_borders_model ? round(cell_state.border_top / 2) : computed_values.border_top().width;
  214. CSSPixels border_bottom = use_collapsing_borders_model ? round(cell_state.border_bottom / 2) : computed_values.border_bottom().width;
  215. CSSPixels border_left = use_collapsing_borders_model ? round(cell_state.border_left / 2) : computed_values.border_left().width;
  216. CSSPixels border_right = use_collapsing_borders_model ? round(cell_state.border_right / 2) : computed_values.border_right().width;
  217. auto min_content_height = calculate_min_content_height(cell.box, available_space.width);
  218. auto max_content_height = calculate_max_content_height(cell.box, available_space.width);
  219. auto min_content_width = calculate_min_content_width(cell.box);
  220. auto max_content_width = calculate_max_content_width(cell.box);
  221. // The outer min-content height of a table-cell is max(min-height, min-content height) adjusted by the cell intrinsic offsets.
  222. auto min_height = computed_values.min_height().to_px(cell.box, containing_block.content_height());
  223. auto cell_intrinsic_height_offsets = padding_top + padding_bottom + border_top + border_bottom;
  224. cell.outer_min_height = max(min_height, min_content_height) + cell_intrinsic_height_offsets;
  225. // The outer min-content width of a table-cell is max(min-width, min-content width) adjusted by the cell intrinsic offsets.
  226. auto min_width = computed_values.min_width().to_px(cell.box, containing_block.content_width());
  227. auto cell_intrinsic_width_offsets = padding_left + padding_right + border_left + border_right;
  228. cell.outer_min_width = max(min_width, min_content_width) + cell_intrinsic_width_offsets;
  229. // The tables specification isn't explicit on how to use the height and max-height CSS properties in the outer max-content formulas.
  230. // However, during this early phase we don't have enough information to resolve percentage sizes yet and the formulas for outer sizes
  231. // in the specification give enough clues to pick defaults in a way that makes sense.
  232. auto height = computed_values.height().is_length() ? computed_values.height().to_px(cell.box, containing_block.content_height()) : 0;
  233. auto max_height = computed_values.max_height().is_length() ? computed_values.max_height().to_px(cell.box, containing_block.content_height()) : INFINITY;
  234. if (m_rows[cell.row_index].is_constrained) {
  235. // The outer max-content height of a table-cell in a constrained row is
  236. // max(min-height, height, min-content height, min(max-height, height)) adjusted by the cell intrinsic offsets.
  237. // NB: min(max-height, height) doesn't have any effect here, we can simplify the expression to max(min-height, height, min-content height).
  238. cell.outer_max_height = max(min_height, max(height, min_content_height)) + cell_intrinsic_height_offsets;
  239. } else {
  240. // The outer max-content height of a table-cell in a non-constrained row is
  241. // max(min-height, height, min-content height, min(max-height, max-content height)) adjusted by the cell intrinsic offsets.
  242. cell.outer_max_height = max(min_height, max(height, max(min_content_height, min(max_height, max_content_height)))) + cell_intrinsic_height_offsets;
  243. }
  244. // See the explanation for height and max_height above.
  245. auto width = computed_values.width().is_length() ? computed_values.width().to_px(cell.box, containing_block.content_width()) : 0;
  246. auto max_width = computed_values.max_width().is_length() ? computed_values.max_width().to_px(cell.box, containing_block.content_width()) : INFINITY;
  247. if (m_columns[cell.column_index].is_constrained) {
  248. // The outer max-content width of a table-cell in a constrained column is
  249. // max(min-width, width, min-content width, min(max-width, width)) adjusted by the cell intrinsic offsets.
  250. // NB: min(max-width, width) doesn't have any effect here, we can simplify the expression to max(min-width, width, min-content width).
  251. cell.outer_max_width = max(min_width, max(width, min_content_width)) + cell_intrinsic_width_offsets;
  252. } else {
  253. // The outer max-content width of a table-cell in a non-constrained column is
  254. // max(min-width, width, min-content width, min(max-width, max-content width)) adjusted by the cell intrinsic offsets.
  255. cell.outer_max_width = max(min_width, max(width, max(min_content_width, min(max_width, max_content_width)))) + cell_intrinsic_width_offsets;
  256. }
  257. }
  258. }
  259. void TableFormattingContext::compute_outer_content_sizes()
  260. {
  261. auto const& containing_block = m_state.get(*table_wrapper().containing_block());
  262. size_t column_index = 0;
  263. for_each_child_box_matching(table_box(), is_table_column_group, [&](auto& column_group_box) {
  264. for_each_child_box_matching(column_group_box, is_table_column, [&](auto& column_box) {
  265. auto const& computed_values = column_box.computed_values();
  266. auto min_width = computed_values.min_width().to_px(column_box, containing_block.content_width());
  267. auto max_width = computed_values.max_width().is_length() ? computed_values.max_width().to_px(column_box, containing_block.content_width()) : INFINITY;
  268. auto width = computed_values.width().to_px(column_box, containing_block.content_width());
  269. // The outer min-content width of a table-column or table-column-group is max(min-width, width).
  270. m_columns[column_index].min_size = max(min_width, width);
  271. // The outer max-content width of a table-column or table-column-group is max(min-width, min(max-width, width)).
  272. m_columns[column_index].max_size = max(min_width, min(max_width, width));
  273. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*column_box.dom_node());
  274. unsigned span = col_node.attribute(HTML::AttributeNames::span).to_uint().value_or(1);
  275. column_index += span;
  276. });
  277. });
  278. for (auto& row : m_rows) {
  279. auto const& computed_values = row.box->computed_values();
  280. auto min_height = computed_values.min_height().to_px(row.box, containing_block.content_height());
  281. auto max_height = computed_values.max_height().is_length() ? computed_values.max_height().to_px(row.box, containing_block.content_height()) : INFINITY;
  282. auto height = computed_values.height().to_px(row.box, containing_block.content_height());
  283. // The outer min-content height of a table-row or table-row-group is max(min-height, height).
  284. row.min_size = max(min_height, height);
  285. // The outer max-content height of a table-row or table-row-group is max(min-height, min(max-height, height)).
  286. row.max_size = max(min_height, min(max_height, height));
  287. }
  288. }
  289. template<>
  290. void TableFormattingContext::initialize_table_measures<TableFormattingContext::Row>()
  291. {
  292. auto const& containing_block = m_state.get(*table_wrapper().containing_block());
  293. for (auto& cell : m_cells) {
  294. auto const& computed_values = cell.box->computed_values();
  295. if (cell.row_span == 1) {
  296. auto specified_height = computed_values.height().to_px(cell.box, containing_block.content_height());
  297. // https://www.w3.org/TR/css-tables-3/#row-layout makes specified cell height part of the initialization formula for row table measures:
  298. // This is done by running the same algorithm as the column measurement, with the span=1 value being initialized (for min-content) with
  299. // the largest of the resulting height of the previous row layout, the height specified on the corresponding table-row (if any), and
  300. // 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).
  301. m_rows[cell.row_index].min_size = max(m_rows[cell.row_index].min_size, max(cell.outer_min_height, specified_height));
  302. m_rows[cell.row_index].max_size = max(m_rows[cell.row_index].max_size, cell.outer_max_height);
  303. }
  304. }
  305. }
  306. template<>
  307. void TableFormattingContext::initialize_table_measures<TableFormattingContext::Column>()
  308. {
  309. for (auto& cell : m_cells) {
  310. if (cell.column_span == 1) {
  311. m_columns[cell.column_index].min_size = max(m_columns[cell.column_index].min_size, cell.outer_min_width);
  312. m_columns[cell.column_index].max_size = max(m_columns[cell.column_index].max_size, cell.outer_max_width);
  313. }
  314. }
  315. }
  316. template<class RowOrColumn>
  317. void TableFormattingContext::compute_table_measures()
  318. {
  319. initialize_table_measures<RowOrColumn>();
  320. auto& rows_or_columns = table_rows_or_columns<RowOrColumn>();
  321. size_t max_cell_span = 1;
  322. for (auto& cell : m_cells) {
  323. max_cell_span = max(max_cell_span, cell_span<RowOrColumn>(cell));
  324. }
  325. for (size_t current_span = 2; current_span <= max_cell_span; current_span++) {
  326. // https://www.w3.org/TR/css-tables-3/#min-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  327. Vector<Vector<CSSPixels>> cell_min_contributions_by_rc_index;
  328. cell_min_contributions_by_rc_index.resize(rows_or_columns.size());
  329. // https://www.w3.org/TR/css-tables-3/#max-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  330. Vector<Vector<CSSPixels>> cell_max_contributions_by_rc_index;
  331. cell_max_contributions_by_rc_index.resize(rows_or_columns.size());
  332. for (auto& cell : m_cells) {
  333. auto cell_span_value = cell_span<RowOrColumn>(cell);
  334. if (cell_span_value == current_span) {
  335. // 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.
  336. CSSPixels baseline_max_content_size = 0;
  337. auto cell_start_rc_index = cell_index<RowOrColumn>(cell);
  338. auto cell_end_rc_index = cell_start_rc_index + cell_span_value;
  339. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  340. baseline_max_content_size += rows_or_columns[rc_index].max_size;
  341. }
  342. // 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.
  343. auto baseline_border_spacing = border_spacing<RowOrColumn>() * (cell_span_value - 1);
  344. // Add contribution from all rows / columns, since we've weighted the gap to the desired spanned size by the the
  345. // 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.
  346. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  347. // The contribution of the cell is the sum of:
  348. // the min-content size of the column based on cells of span up to N-1
  349. auto cell_min_contribution = rows_or_columns[rc_index].min_size;
  350. // and the product of:
  351. // - 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
  352. // - the outer min-content size of the cell minus the baseline max-content size and baseline border spacing, or 0 if this is negative
  353. cell_min_contribution += (rows_or_columns[rc_index].max_size / baseline_max_content_size)
  354. * max(CSSPixels(0), cell_min_size<RowOrColumn>(cell) - baseline_max_content_size - baseline_border_spacing);
  355. // The contribution of the cell is the sum of:
  356. // the max-content size of the column based on cells of span up to N-1
  357. auto cell_max_contribution = rows_or_columns[rc_index].max_size;
  358. // and the product of:
  359. // - 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
  360. // - 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
  361. cell_max_contribution += (rows_or_columns[rc_index].max_size / baseline_max_content_size)
  362. * max(CSSPixels(0), cell_max_size<RowOrColumn>(cell) - baseline_max_content_size - baseline_border_spacing);
  363. cell_min_contributions_by_rc_index[rc_index].append(cell_min_contribution);
  364. cell_max_contributions_by_rc_index[rc_index].append(cell_max_contribution);
  365. }
  366. }
  367. }
  368. for (size_t rc_index = 0; rc_index < rows_or_columns.size(); rc_index++) {
  369. // min-content size of a row / column based on cells of span up to N (N > 1) is
  370. // the largest of the min-content size of the row / column based on cells of span up to N-1 and
  371. // the contributions of the cells in the row / column whose rowSpan / colSpan is N
  372. for (auto min_contribution : cell_min_contributions_by_rc_index[rc_index])
  373. rows_or_columns[rc_index].min_size = max(rows_or_columns[rc_index].min_size, min_contribution);
  374. // max-content size of a row / column based on cells of span up to N (N > 1) is
  375. // the largest of the max-content size based on cells of span up to N-1 and the contributions of
  376. // the cells in the row / column whose rowSpan / colSpan is N
  377. for (auto max_contribution : cell_max_contributions_by_rc_index[rc_index])
  378. rows_or_columns[rc_index].max_size = max(rows_or_columns[rc_index].max_size, max_contribution);
  379. }
  380. }
  381. }
  382. CSSPixels TableFormattingContext::compute_capmin()
  383. {
  384. // The caption width minimum (CAPMIN) is the largest of the table captions min-content contribution:
  385. // https://drafts.csswg.org/css-tables-3/#computing-the-table-width
  386. CSSPixels capmin = 0;
  387. for (auto* child = table_box().first_child(); child; child = child->next_sibling()) {
  388. if (!child->display().is_table_caption()) {
  389. continue;
  390. }
  391. VERIFY(child->is_box());
  392. capmin = max(calculate_min_content_width(static_cast<Box const&>(*child)), capmin);
  393. }
  394. return capmin;
  395. }
  396. void TableFormattingContext::compute_table_width()
  397. {
  398. // https://drafts.csswg.org/css-tables-3/#computing-the-table-width
  399. auto& table_box_state = m_state.get_mutable(table_box());
  400. auto& computed_values = table_box().computed_values();
  401. CSSPixels width_of_table_containing_block = m_state.get(*table_box().containing_block()).content_width();
  402. // Percentages on 'width' and 'height' on the table are relative to the table wrapper box's containing block,
  403. // not the table wrapper box itself.
  404. CSSPixels width_of_table_wrapper_containing_block = m_state.get(*table_wrapper().containing_block()).content_width();
  405. // Compute undistributable space due to border spacing: https://www.w3.org/TR/css-tables-3/#computing-undistributable-space.
  406. auto undistributable_space = (m_columns.size() + 1) * border_spacing_horizontal();
  407. // The row/column-grid width minimum (GRIDMIN) width is the sum of the min-content width
  408. // of all the columns plus cell spacing or borders.
  409. CSSPixels grid_min = 0.0f;
  410. for (auto& column : m_columns) {
  411. grid_min += column.min_size;
  412. }
  413. grid_min += undistributable_space;
  414. // The row/column-grid width maximum (GRIDMAX) width is the sum of the max-content width
  415. // of all the columns plus cell spacing or borders.
  416. CSSPixels grid_max = 0.0f;
  417. for (auto& column : m_columns) {
  418. grid_max += column.max_size;
  419. }
  420. grid_max += undistributable_space;
  421. // The used min-width of a table is the greater of the resolved min-width, CAPMIN, and GRIDMIN.
  422. auto used_min_width = max(grid_min, compute_capmin());
  423. if (!computed_values.min_width().is_auto()) {
  424. used_min_width = max(used_min_width, computed_values.min_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  425. }
  426. CSSPixels used_width;
  427. if (computed_values.width().is_auto()) {
  428. // If the table-root has 'width: auto', the used width is the greater of
  429. // min(GRIDMAX, the table’s containing block width), the used min-width of the table.
  430. used_width = max(min(grid_max, width_of_table_containing_block), used_min_width);
  431. // https://www.w3.org/TR/CSS22/tables.html#auto-table-layout
  432. // A percentage value for a column width is relative to the table width. If the table has 'width: auto',
  433. // a percentage represents a constraint on the column's width, which a UA should try to satisfy.
  434. CSSPixels adjusted_used_width = 0;
  435. for (auto& cell : m_cells) {
  436. auto const& cell_width = cell.box->computed_values().width();
  437. if (cell_width.is_percentage()) {
  438. adjusted_used_width = 100 / cell_width.percentage().value() * cell.outer_min_width;
  439. used_width = min(max(used_width, adjusted_used_width), width_of_table_containing_block);
  440. }
  441. }
  442. } else {
  443. // If the table-root’s width property has a computed value (resolving to
  444. // resolved-table-width) other than auto, the used width is the greater
  445. // of resolved-table-width, and the used min-width of the table.
  446. CSSPixels resolved_table_width = computed_values.width().to_px(table_box(), width_of_table_wrapper_containing_block);
  447. // Since used_width is content width, we need to subtract the border spacing from the specified width for a consistent comparison.
  448. used_width = max(resolved_table_width - table_box_state.border_box_left() - table_box_state.border_box_right(), used_min_width);
  449. if (!should_treat_max_width_as_none(table_box(), m_available_space->width))
  450. used_width = min(used_width, computed_values.max_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  451. }
  452. table_box_state.set_content_width(used_width);
  453. }
  454. CSSPixels TableFormattingContext::compute_columns_total_used_width() const
  455. {
  456. CSSPixels total_used_width = 0;
  457. for (auto& column : m_columns) {
  458. total_used_width += column.used_width;
  459. }
  460. return total_used_width;
  461. }
  462. static CSSPixels compute_columns_total_candidate_width(Vector<CSSPixels> const& candidate_widths)
  463. {
  464. CSSPixels total_candidate_width = 0;
  465. for (auto width : candidate_widths) {
  466. total_candidate_width += width;
  467. }
  468. return total_candidate_width;
  469. }
  470. void TableFormattingContext::commit_candidate_column_widths(Vector<CSSPixels> const& candidate_widths)
  471. {
  472. VERIFY(candidate_widths.size() == m_columns.size());
  473. for (size_t i = 0; i < m_columns.size(); ++i) {
  474. m_columns[i].used_width = candidate_widths[i];
  475. }
  476. }
  477. void TableFormattingContext::assign_columns_width_linear_combination(Vector<CSSPixels> const& candidate_widths, CSSPixels available_width)
  478. {
  479. auto columns_total_candidate_width = compute_columns_total_candidate_width(candidate_widths);
  480. auto columns_total_used_width = compute_columns_total_used_width();
  481. if (columns_total_candidate_width == columns_total_used_width) {
  482. return;
  483. }
  484. auto candidate_weight = ((available_width - columns_total_used_width) / (columns_total_candidate_width - columns_total_used_width)).to_double();
  485. for (size_t i = 0; i < m_columns.size(); ++i) {
  486. auto& column = m_columns[i];
  487. column.used_width = candidate_weight * candidate_widths[i] + (1 - candidate_weight) * column.used_width;
  488. }
  489. }
  490. template<class ColumnFilter>
  491. bool TableFormattingContext::distribute_excess_width_proportionally_to_max_width(CSSPixels excess_width, ColumnFilter column_filter)
  492. {
  493. bool found_matching_columns = false;
  494. CSSPixels total_max_width = 0;
  495. for (auto const& column : m_columns) {
  496. if (column_filter(column)) {
  497. total_max_width += column.max_size;
  498. found_matching_columns = true;
  499. }
  500. }
  501. if (!found_matching_columns) {
  502. return false;
  503. }
  504. VERIFY(total_max_width > 0);
  505. for (auto& column : m_columns) {
  506. if (column_filter(column)) {
  507. column.used_width += excess_width * column.max_size / total_max_width;
  508. }
  509. }
  510. return true;
  511. }
  512. template<class ColumnFilter>
  513. bool TableFormattingContext::distribute_excess_width_equally(CSSPixels excess_width, ColumnFilter column_filter)
  514. {
  515. size_t matching_column_count = 0;
  516. for (auto const& column : m_columns) {
  517. if (column_filter(column)) {
  518. ++matching_column_count;
  519. }
  520. }
  521. if (matching_column_count == 0) {
  522. return false;
  523. }
  524. for (auto& column : m_columns) {
  525. if (column_filter(column)) {
  526. column.used_width += excess_width / matching_column_count;
  527. }
  528. }
  529. return matching_column_count;
  530. }
  531. template<class ColumnFilter>
  532. bool TableFormattingContext::distribute_excess_width_by_intrinsic_percentage(CSSPixels excess_width, ColumnFilter column_filter)
  533. {
  534. bool found_matching_columns = false;
  535. double total_percentage_width = 0;
  536. for (auto const& column : m_columns) {
  537. if (column_filter(column)) {
  538. found_matching_columns = true;
  539. total_percentage_width += column.percentage_width;
  540. }
  541. }
  542. if (!found_matching_columns) {
  543. return false;
  544. }
  545. for (auto& column : m_columns) {
  546. if (column_filter(column)) {
  547. column.used_width += excess_width * column.percentage_width / total_percentage_width;
  548. }
  549. }
  550. return true;
  551. }
  552. void TableFormattingContext::distribute_width_to_columns()
  553. {
  554. // Implements https://www.w3.org/TR/css-tables-3/#width-distribution-algorithm
  555. // The total horizontal border spacing is defined for each table:
  556. // - 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
  557. // - Otherwise, 0
  558. auto total_horizontal_border_spacing = m_columns.is_empty() ? 0 : (m_columns.size() + 1) * border_spacing_horizontal();
  559. // The assignable table width is the used width of the table minus the total horizontal border spacing (if any).
  560. // This is the width that we will be able to allocate to the columns.
  561. const CSSPixels available_width = m_state.get(table_box()).content_width() - total_horizontal_border_spacing;
  562. Vector<CSSPixels> candidate_widths;
  563. candidate_widths.resize(m_columns.size());
  564. // 1. The min-content sizing-guess is the set of column width assignments where each column is assigned its min-content width.
  565. for (size_t i = 0; i < m_columns.size(); ++i) {
  566. auto& column = m_columns[i];
  567. column.used_width = column.min_size;
  568. candidate_widths[i] = column.min_size;
  569. }
  570. // 2. The min-content-percentage sizing-guess is the set of column width assignments where:
  571. // - each percent-column is assigned the larger of:
  572. // - its intrinsic percentage width times the assignable width and
  573. // - its min-content width.
  574. // - all other columns are assigned their min-content width.
  575. for (size_t i = 0; i < m_columns.size(); ++i) {
  576. auto& column = m_columns[i];
  577. if (column.has_percentage_width) {
  578. candidate_widths[i] = max(column.min_size, column.percentage_width / 100 * available_width);
  579. }
  580. }
  581. // If the assignable table width is less than or equal to the max-content sizing-guess, the used widths of the columns must be the
  582. // linear combination (with weights adding to 1) of the two consecutive sizing-guesses whose width sums bound the available width.
  583. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  584. assign_columns_width_linear_combination(candidate_widths, available_width);
  585. return;
  586. } else {
  587. commit_candidate_column_widths(candidate_widths);
  588. }
  589. // 3. The min-content-specified sizing-guess is the set of column width assignments where:
  590. // - each percent-column is assigned the larger of:
  591. // - its intrinsic percentage width times the assignable width and
  592. // - its min-content width
  593. // - any other column that is constrained is assigned its max-content width
  594. // - all other columns are assigned their min-content width.
  595. for (size_t i = 0; i < m_columns.size(); ++i) {
  596. auto& column = m_columns[i];
  597. if (column.is_constrained) {
  598. candidate_widths[i] = column.max_size;
  599. }
  600. }
  601. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  602. assign_columns_width_linear_combination(candidate_widths, available_width);
  603. return;
  604. } else {
  605. commit_candidate_column_widths(candidate_widths);
  606. }
  607. // 4. The max-content sizing-guess is the set of column width assignments where:
  608. // - each percent-column is assigned the larger of:
  609. // - its intrinsic percentage width times the assignable width and
  610. // - its min-content width
  611. // - all other columns are assigned their max-content width.
  612. for (size_t i = 0; i < m_columns.size(); ++i) {
  613. auto& column = m_columns[i];
  614. if (!column.has_percentage_width) {
  615. candidate_widths[i] = column.max_size;
  616. }
  617. }
  618. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  619. assign_columns_width_linear_combination(candidate_widths, available_width);
  620. return;
  621. } else {
  622. commit_candidate_column_widths(candidate_widths);
  623. }
  624. // Otherwise, the used widths of the columns are the result of starting from the max-content sizing-guess and distributing
  625. // the excess width to the columns of the table according to the rules for distributing excess width to columns (for used width).
  626. distribute_excess_width_to_columns(available_width);
  627. }
  628. void TableFormattingContext::distribute_excess_width_to_columns(CSSPixels available_width)
  629. {
  630. // Implements https://www.w3.org/TR/css-tables-3/#distributing-width-to-columns
  631. auto columns_total_used_width = compute_columns_total_used_width();
  632. if (columns_total_used_width >= available_width) {
  633. return;
  634. }
  635. auto excess_width = available_width - columns_total_used_width;
  636. if (excess_width == 0) {
  637. return;
  638. }
  639. // 1. If there are non-constrained columns that have originating cells with intrinsic percentage width of 0% and with nonzero
  640. // max-content width (aka the columns allowed to grow by this rule), the distributed widths of the columns allowed to grow
  641. // by this rule are increased in proportion to max-content width so the total increase adds to the excess width.
  642. if (distribute_excess_width_proportionally_to_max_width(
  643. excess_width,
  644. [](auto const& column) {
  645. return !column.is_constrained && column.has_originating_cells && column.percentage_width == 0 && column.max_size > 0;
  646. })) {
  647. excess_width = available_width - compute_columns_total_used_width();
  648. }
  649. if (excess_width == 0) {
  650. return;
  651. }
  652. // 2. Otherwise, if there are non-constrained columns that have originating cells with intrinsic percentage width of 0% (aka the columns
  653. // allowed to grow by this rule, which thanks to the previous rule must have zero max-content width), the distributed widths of the
  654. // columns allowed to grow by this rule are increased by equal amounts so the total increase adds to the excess width.
  655. if (distribute_excess_width_equally(excess_width,
  656. [](auto const& column) {
  657. return !column.is_constrained && column.has_originating_cells && column.percentage_width == 0;
  658. })) {
  659. excess_width = available_width - compute_columns_total_used_width();
  660. }
  661. if (excess_width == 0) {
  662. return;
  663. }
  664. // 3. Otherwise, if there are constrained columns with intrinsic percentage width of 0% and with nonzero max-content width
  665. // (aka the columns allowed to grow by this rule, which, due to other rules, must have originating cells), the distributed widths of the
  666. // columns allowed to grow by this rule are increased in proportion to max-content width so the total increase adds to the excess width.
  667. if (distribute_excess_width_proportionally_to_max_width(
  668. excess_width,
  669. [](auto const& column) {
  670. return column.is_constrained && column.percentage_width == 0 && column.max_size > 0;
  671. })) {
  672. excess_width = available_width - compute_columns_total_used_width();
  673. }
  674. if (excess_width == 0) {
  675. return;
  676. }
  677. // 4. Otherwise, if there are columns with intrinsic percentage width greater than 0% (aka the columns allowed to grow by this rule,
  678. // which, due to other rules, must have originating cells), the distributed widths of the columns allowed to grow by this rule are
  679. // increased in proportion to intrinsic percentage width so the total increase adds to the excess width.
  680. if (distribute_excess_width_by_intrinsic_percentage(excess_width, [](auto const& column) {
  681. return column.percentage_width > 0;
  682. })) {
  683. excess_width = available_width - compute_columns_total_used_width();
  684. }
  685. if (excess_width == 0) {
  686. return;
  687. }
  688. // 5. Otherwise, if there is any such column, the distributed widths of all columns that have originating cells are increased by equal amounts
  689. // so the total increase adds to the excess width.
  690. if (distribute_excess_width_equally(
  691. excess_width,
  692. [](auto const& column) { return column.has_originating_cells; })) {
  693. excess_width = available_width - compute_columns_total_used_width();
  694. }
  695. if (excess_width == 0) {
  696. return;
  697. }
  698. // 6. Otherwise, the distributed widths of all columns are increased by equal amounts so the total increase adds to the excess width.
  699. distribute_excess_width_equally(excess_width, [](auto const&) { return true; });
  700. }
  701. void TableFormattingContext::compute_table_height(LayoutMode layout_mode)
  702. {
  703. // First pass of row height calculation:
  704. for (auto& row : m_rows) {
  705. auto row_computed_height = row.box->computed_values().height();
  706. if (row_computed_height.is_length()) {
  707. auto height_of_containing_block = m_state.get(*row.box->containing_block()).content_height();
  708. auto row_used_height = row_computed_height.to_px(row.box, height_of_containing_block);
  709. row.base_height = max(row.base_height, row_used_height);
  710. }
  711. }
  712. // First pass of cells layout:
  713. for (auto& cell : m_cells) {
  714. auto& row = m_rows[cell.row_index];
  715. auto& cell_state = m_state.get_mutable(cell.box);
  716. CSSPixels span_width = 0;
  717. for (size_t i = 0; i < cell.column_span; ++i)
  718. span_width += m_columns[cell.column_index + i].used_width;
  719. auto width_of_containing_block = m_state.get(*cell.box->containing_block()).content_width();
  720. auto width_of_containing_block_as_length = CSS::Length::make_px(width_of_containing_block);
  721. auto height_of_containing_block = m_state.get(*cell.box->containing_block()).content_height();
  722. auto height_of_containing_block_as_length = CSS::Length::make_px(height_of_containing_block);
  723. cell_state.padding_top = cell.box->computed_values().padding().top().to_px(cell.box, width_of_containing_block);
  724. cell_state.padding_bottom = cell.box->computed_values().padding().bottom().to_px(cell.box, width_of_containing_block);
  725. cell_state.padding_left = cell.box->computed_values().padding().left().to_px(cell.box, width_of_containing_block);
  726. cell_state.padding_right = cell.box->computed_values().padding().right().to_px(cell.box, width_of_containing_block);
  727. if (cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Separate) {
  728. cell_state.border_top = cell.box->computed_values().border_top().width;
  729. cell_state.border_bottom = cell.box->computed_values().border_bottom().width;
  730. cell_state.border_left = cell.box->computed_values().border_left().width;
  731. cell_state.border_right = cell.box->computed_values().border_right().width;
  732. }
  733. auto cell_computed_height = cell.box->computed_values().height();
  734. if (cell_computed_height.is_length()) {
  735. auto cell_used_height = cell_computed_height.to_px(cell.box, height_of_containing_block);
  736. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  737. row.base_height = max(row.base_height, cell_used_height);
  738. }
  739. // Compute cell width as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  740. // 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:
  741. // - the widths/heights of all spanned visible columns/rows
  742. // - the horizontal/vertical border-spacing times the amount of spanned visible columns/rows minus one
  743. // FIXME: Account for visibility.
  744. cell_state.set_content_width(span_width - cell_state.border_box_left() - cell_state.border_box_right() + (cell.column_span - 1) * border_spacing_horizontal());
  745. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  746. cell_state.set_content_height(independent_formatting_context->automatic_content_height());
  747. independent_formatting_context->parent_context_did_dimension_child_root_box();
  748. }
  749. cell.baseline = box_baseline(cell.box);
  750. // Implements https://www.w3.org/TR/css-tables-3/#computing-the-table-height
  751. // The minimum height of a row is the maximum of:
  752. // - the computed height (if definite, percentages being considered 0px) of its corresponding table-row (if nay)
  753. // - the computed height of each cell spanning the current row exclusively (if definite, percentages being treated as 0px), and
  754. // - the minimum height (ROWMIN) required by the cells spanning the row.
  755. // Note that we've already applied the first rule at the top of the method.
  756. if (cell.row_span == 1) {
  757. row.base_height = max(row.base_height, cell_state.border_box_height());
  758. }
  759. row.base_height = max(row.base_height, m_rows[cell.row_index].min_size);
  760. row.baseline = max(row.baseline, cell.baseline);
  761. }
  762. CSSPixels sum_rows_height = 0;
  763. for (auto& row : m_rows) {
  764. sum_rows_height += row.base_height;
  765. }
  766. m_table_height = sum_rows_height;
  767. if (!table_box().computed_values().height().is_auto()) {
  768. // If the table has a height property with a value other than auto, it is treated as a minimum height for the
  769. // table grid, and will eventually be distributed to the height of the rows if their collective minimum height
  770. // ends up smaller than this number.
  771. CSSPixels height_of_table_containing_block = m_state.get(*table_wrapper().containing_block()).content_height();
  772. auto specified_table_height = table_box().computed_values().height().to_px(table_box(), height_of_table_containing_block);
  773. auto const& table_state = m_state.get(table_box());
  774. m_table_height = max(m_table_height, specified_table_height - table_state.border_box_top() - table_state.border_box_bottom());
  775. }
  776. for (auto& row : m_rows) {
  777. // Reference size is the largest of
  778. // - its initial base height and
  779. // - its new base height (the one evaluated during the second layout pass, where percentages used in
  780. // rowgroups/rows/cells' specified heights were resolved according to the table height, instead of
  781. // being ignored as 0px).
  782. // Assign reference size to base size. Later, the reference size might change to a larger value during
  783. // the second pass of rows layout.
  784. row.reference_height = row.base_height;
  785. }
  786. // Second pass of rows height calculation:
  787. // At this point, percentage row height can be resolved because the final table height is calculated.
  788. for (auto& row : m_rows) {
  789. auto row_computed_height = row.box->computed_values().height();
  790. if (row_computed_height.is_percentage()) {
  791. auto row_used_height = row_computed_height.to_px(row.box, m_table_height);
  792. row.reference_height = max(row.reference_height, row_used_height);
  793. } else {
  794. continue;
  795. }
  796. }
  797. // Second pass cells layout:
  798. // At this point, percentage cell height can be resolved because the final table height is calculated.
  799. for (auto& cell : m_cells) {
  800. auto& row = m_rows[cell.row_index];
  801. auto& cell_state = m_state.get_mutable(cell.box);
  802. CSSPixels span_width = 0;
  803. for (size_t i = 0; i < cell.column_span; ++i)
  804. span_width += m_columns[cell.column_index + i].used_width;
  805. auto cell_computed_height = cell.box->computed_values().height();
  806. if (cell_computed_height.is_percentage()) {
  807. auto cell_used_height = cell_computed_height.to_px(cell.box, m_table_height);
  808. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  809. row.reference_height = max(row.reference_height, cell_used_height);
  810. } else {
  811. continue;
  812. }
  813. cell_state.set_content_width(span_width - cell_state.border_box_left() - cell_state.border_box_right() + (cell.column_span - 1) * border_spacing_horizontal());
  814. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  815. independent_formatting_context->parent_context_did_dimension_child_root_box();
  816. }
  817. cell.baseline = box_baseline(cell.box);
  818. row.reference_height = max(row.reference_height, cell_state.border_box_height());
  819. row.baseline = max(row.baseline, cell.baseline);
  820. }
  821. }
  822. void TableFormattingContext::distribute_height_to_rows()
  823. {
  824. CSSPixels sum_reference_height = 0;
  825. for (auto& row : m_rows) {
  826. sum_reference_height += row.reference_height;
  827. }
  828. if (sum_reference_height == 0)
  829. return;
  830. Vector<Row&> rows_with_auto_height;
  831. for (auto& row : m_rows) {
  832. if (row.box->computed_values().height().is_auto()) {
  833. rows_with_auto_height.append(row);
  834. }
  835. }
  836. if (m_table_height <= sum_reference_height) {
  837. // If the table height is equal or smaller than sum of reference sizes, the final height assigned to each row
  838. // will be the weighted mean of the base and the reference size that yields the correct total height.
  839. for (auto& row : m_rows) {
  840. auto weight = row.reference_height / sum_reference_height;
  841. auto final_height = m_table_height * weight;
  842. row.final_height = final_height;
  843. }
  844. } else if (rows_with_auto_height.size() > 0) {
  845. // Else, if the table owns any “auto-height” row (a row whose size is only determined by its content size and
  846. // none of the specified heights), each non-auto-height row receives its reference height and auto-height rows
  847. // receive their reference size plus some increment which is equal to the height missing to amount to the
  848. // specified table height divided by the amount of such rows.
  849. for (auto& row : m_rows) {
  850. row.final_height = row.reference_height;
  851. }
  852. auto auto_height_rows_increment = (m_table_height - sum_reference_height) / rows_with_auto_height.size();
  853. for (auto& row : rows_with_auto_height) {
  854. row.final_height += auto_height_rows_increment;
  855. }
  856. } else {
  857. // Else, all rows receive their reference size plus some increment which is equal to the height missing to
  858. // amount to the specified table height divided by the amount of rows.
  859. auto increment = (m_table_height - sum_reference_height) / m_rows.size();
  860. for (auto& row : m_rows) {
  861. row.final_height = row.reference_height + increment;
  862. }
  863. }
  864. // Add undistributable space due to border spacing: https://www.w3.org/TR/css-tables-3/#computing-undistributable-space.
  865. m_table_height += (m_rows.size() + 1) * border_spacing_vertical();
  866. }
  867. void TableFormattingContext::position_row_boxes()
  868. {
  869. auto const& table_state = m_state.get(table_box());
  870. CSSPixels row_top_offset = table_state.offset.y() + table_state.padding_top + border_spacing_vertical();
  871. CSSPixels row_left_offset = table_state.border_left + table_state.padding_left + border_spacing_horizontal();
  872. for (size_t y = 0; y < m_rows.size(); y++) {
  873. auto& row = m_rows[y];
  874. auto& row_state = m_state.get_mutable(row.box);
  875. CSSPixels row_width = 0.0f;
  876. for (auto& column : m_columns) {
  877. row_width += column.used_width;
  878. }
  879. row_state.set_content_height(row.final_height);
  880. row_state.set_content_width(row_width);
  881. row_state.set_content_x(row_left_offset);
  882. row_state.set_content_y(row_top_offset);
  883. row_top_offset += row_state.content_height() + border_spacing_vertical();
  884. }
  885. CSSPixels row_group_top_offset = table_state.border_top + table_state.padding_top;
  886. CSSPixels row_group_left_offset = table_state.border_left + table_state.padding_left;
  887. for_each_child_box_matching(table_box(), is_table_row_group, [&](auto& row_group_box) {
  888. CSSPixels row_group_height = 0.0f;
  889. CSSPixels row_group_width = 0.0f;
  890. auto& row_group_box_state = m_state.get_mutable(row_group_box);
  891. row_group_box_state.set_content_x(row_group_left_offset);
  892. row_group_box_state.set_content_y(row_group_top_offset);
  893. for_each_child_box_matching(row_group_box, is_table_row, [&](auto& row) {
  894. auto const& row_state = m_state.get(row);
  895. row_group_height += row_state.border_box_height();
  896. row_group_width = max(row_group_width, row_state.border_box_width());
  897. });
  898. row_group_box_state.set_content_height(row_group_height);
  899. row_group_box_state.set_content_width(row_group_width);
  900. row_group_top_offset += row_group_height;
  901. });
  902. auto total_content_height = max(row_top_offset, row_group_top_offset) - table_state.offset.y() - table_state.padding_top;
  903. m_table_height = max(total_content_height, m_table_height);
  904. }
  905. void TableFormattingContext::position_cell_boxes()
  906. {
  907. CSSPixels left_column_offset = 0;
  908. for (auto& column : m_columns) {
  909. column.left_offset = left_column_offset;
  910. left_column_offset += column.used_width;
  911. }
  912. for (auto& cell : m_cells) {
  913. auto& cell_state = m_state.get_mutable(cell.box);
  914. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  915. CSSPixels const cell_border_box_height = cell_state.content_height() + cell_state.border_box_top() + cell_state.border_box_bottom();
  916. CSSPixels const row_content_height = compute_row_content_height(cell);
  917. auto const& vertical_align = cell.box->computed_values().vertical_align();
  918. // The following image shows various alignment lines of a row:
  919. // https://www.w3.org/TR/css-tables-3/images/cell-align-explainer.png
  920. if (vertical_align.has<CSS::VerticalAlign>()) {
  921. auto height_diff = row_content_height - cell_border_box_height;
  922. switch (vertical_align.get<CSS::VerticalAlign>()) {
  923. case CSS::VerticalAlign::Middle: {
  924. cell_state.padding_top += height_diff / 2;
  925. cell_state.padding_bottom += height_diff / 2;
  926. break;
  927. }
  928. case CSS::VerticalAlign::Top: {
  929. cell_state.padding_bottom += height_diff;
  930. break;
  931. }
  932. case CSS::VerticalAlign::Bottom: {
  933. cell_state.padding_top += height_diff;
  934. break;
  935. }
  936. case CSS::VerticalAlign::Baseline: {
  937. cell_state.padding_top += m_rows[cell.row_index].baseline - cell.baseline;
  938. cell_state.padding_bottom += height_diff;
  939. break;
  940. }
  941. default:
  942. VERIFY_NOT_REACHED();
  943. }
  944. }
  945. // Compute cell position as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  946. // left/top location is the sum of:
  947. // - for top: the height reserved for top captions (including margins), if any
  948. // - the padding-left/padding-top and border-left-width/border-top-width of the table
  949. // FIXME: Account for visibility.
  950. cell_state.offset = row_state.offset.translated(
  951. cell_state.border_box_left() + m_columns[cell.column_index].left_offset + cell.column_index * border_spacing_horizontal(),
  952. cell_state.border_box_top());
  953. }
  954. }
  955. bool TableFormattingContext::border_is_less_specific(const CSS::BorderData& a, const CSS::BorderData& b)
  956. {
  957. // Implements criteria for steps 1, 2 and 3 of border conflict resolution algorithm.
  958. static HashMap<CSS::LineStyle, unsigned> const line_style_score = {
  959. { CSS::LineStyle::Inset, 0 },
  960. { CSS::LineStyle::Groove, 1 },
  961. { CSS::LineStyle::Outset, 2 },
  962. { CSS::LineStyle::Ridge, 3 },
  963. { CSS::LineStyle::Dotted, 4 },
  964. { CSS::LineStyle::Dashed, 5 },
  965. { CSS::LineStyle::Solid, 6 },
  966. { CSS::LineStyle::Double, 7 },
  967. };
  968. if (a.line_style == CSS::LineStyle::Hidden) {
  969. return false;
  970. }
  971. if (b.line_style == CSS::LineStyle::Hidden) {
  972. return true;
  973. }
  974. if (a.line_style == CSS::LineStyle::None) {
  975. return true;
  976. }
  977. if (b.line_style == CSS::LineStyle::None) {
  978. return false;
  979. }
  980. if (a.width > b.width) {
  981. return false;
  982. } else if (a.width < b.width) {
  983. return true;
  984. }
  985. if (*line_style_score.get(a.line_style) > *line_style_score.get(b.line_style)) {
  986. return false;
  987. } else if (*line_style_score.get(a.line_style) < *line_style_score.get(b.line_style)) {
  988. return true;
  989. }
  990. return false;
  991. }
  992. static const CSS::BorderData& winning_border_style(const CSS::BorderData& a, const CSS::BorderData& b)
  993. {
  994. return TableFormattingContext::border_is_less_specific(a, b) ? b : a;
  995. }
  996. const CSS::BorderData& TableFormattingContext::border_data_conflicting_edge(TableFormattingContext::ConflictingEdge const& conflicting_edge)
  997. {
  998. auto const& style = conflicting_edge.element->computed_values();
  999. switch (conflicting_edge.side) {
  1000. case ConflictingSide::Top: {
  1001. return style.border_top();
  1002. }
  1003. case ConflictingSide::Bottom: {
  1004. return style.border_bottom();
  1005. }
  1006. case ConflictingSide::Left: {
  1007. return style.border_left();
  1008. }
  1009. case ConflictingSide::Right: {
  1010. return style.border_right();
  1011. }
  1012. default: {
  1013. VERIFY_NOT_REACHED();
  1014. }
  1015. }
  1016. }
  1017. void TableFormattingContext::border_conflict_resolution()
  1018. {
  1019. // Partially implements border conflict resolution, as described in
  1020. // https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution
  1021. BorderConflictFinder finder(this);
  1022. for (auto& cell : m_cells) {
  1023. auto& cell_state = m_state.get_mutable(cell.box);
  1024. cell_state.set_table_cell_coordinates(
  1025. Painting::PaintableBox::TableCellCoordinates {
  1026. .row_index = cell.row_index,
  1027. .column_index = cell.column_index,
  1028. .row_span = cell.row_span,
  1029. .column_span = cell.column_span });
  1030. if (cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Separate) {
  1031. continue;
  1032. }
  1033. // Execute steps 1, 2 and 3 of the algorithm for each edge.
  1034. Painting::BordersData override_borders_data;
  1035. auto const& cell_style = cell.box->computed_values();
  1036. auto winning_border_left = cell_style.border_left();
  1037. for (auto const conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Left)) {
  1038. winning_border_left = winning_border_style(winning_border_left, border_data_conflicting_edge(conflicting_edge));
  1039. }
  1040. override_borders_data.left = winning_border_left;
  1041. cell_state.border_left = winning_border_left.width;
  1042. auto winning_border_right = cell_style.border_right();
  1043. for (auto const conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Right)) {
  1044. winning_border_right = winning_border_style(winning_border_right, border_data_conflicting_edge(conflicting_edge));
  1045. }
  1046. override_borders_data.right = winning_border_right;
  1047. cell_state.border_right = winning_border_right.width;
  1048. auto winning_border_top = cell_style.border_top();
  1049. for (auto const conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Top)) {
  1050. winning_border_top = winning_border_style(winning_border_top, border_data_conflicting_edge(conflicting_edge));
  1051. }
  1052. override_borders_data.top = winning_border_top;
  1053. cell_state.border_top = winning_border_top.width;
  1054. auto winning_border_bottom = cell_style.border_bottom();
  1055. for (auto const conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Bottom)) {
  1056. winning_border_bottom = winning_border_style(winning_border_bottom, border_data_conflicting_edge(conflicting_edge));
  1057. }
  1058. override_borders_data.bottom = winning_border_bottom;
  1059. cell_state.border_bottom = override_borders_data.bottom.width;
  1060. // 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
  1061. // row group, column, column group and, lastly, table. When two elements of the same type conflict, then the one
  1062. // further to the left (if the table's 'direction' is 'ltr'; right, if it is 'rtl') and further to the top wins.
  1063. cell_state.set_override_borders_data(override_borders_data);
  1064. }
  1065. }
  1066. CSSPixels TableFormattingContext::compute_row_content_height(Cell const& cell) const
  1067. {
  1068. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  1069. if (cell.row_span == 1) {
  1070. return row_state.content_height();
  1071. }
  1072. // The height of a cell is the sum of all spanned rows, as described in
  1073. // https://www.w3.org/TR/css-tables-3/#bounding-box-assignment
  1074. // When the row span is greater than 1, the borders of inner rows within the span have to be
  1075. // included in the content height of the spanning cell. First top and final bottom borders are
  1076. // excluded to be consistent with the handling of row span 1 case above, which uses the content
  1077. // height (no top and bottom borders) of the row.
  1078. CSSPixels span_height = 0;
  1079. for (size_t i = 0; i < cell.row_span; ++i) {
  1080. auto const& row_state = m_state.get(m_rows[cell.row_index + i].box);
  1081. if (i == 0) {
  1082. span_height += row_state.content_height() + row_state.border_box_bottom();
  1083. } else if (i == cell.row_span - 1) {
  1084. span_height += row_state.border_box_top() + row_state.content_height();
  1085. } else {
  1086. span_height += row_state.border_box_height();
  1087. }
  1088. }
  1089. // Compute cell height as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  1090. // width/height is the sum of:
  1091. // - the widths/heights of all spanned visible columns/rows
  1092. // - the horizontal/vertical border-spacing times the amount of spanned visible columns/rows minus one
  1093. // FIXME: Account for visibility.
  1094. span_height += (cell.row_span - 1) * border_spacing_vertical();
  1095. return span_height;
  1096. }
  1097. TableFormattingContext::BorderConflictFinder::BorderConflictFinder(TableFormattingContext const* context)
  1098. : m_context(context)
  1099. {
  1100. collect_conflicting_col_elements();
  1101. collect_conflicting_row_group_elements();
  1102. }
  1103. void TableFormattingContext::BorderConflictFinder::collect_conflicting_col_elements()
  1104. {
  1105. m_col_elements_by_index.resize(m_context->m_columns.size());
  1106. for (auto* child = m_context->table_box().first_child(); child; child = child->next_sibling()) {
  1107. if (!child->display().is_table_column_group()) {
  1108. continue;
  1109. }
  1110. size_t column_index = 0;
  1111. for (auto* child_of_column_group = child->first_child(); child_of_column_group; child_of_column_group = child_of_column_group->next_sibling()) {
  1112. VERIFY(child_of_column_group->display().is_table_column());
  1113. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*child_of_column_group->dom_node());
  1114. unsigned span = col_node.attribute(HTML::AttributeNames::span).to_uint().value_or(1);
  1115. for (size_t i = column_index; i < column_index + span; ++i) {
  1116. m_col_elements_by_index[i] = child_of_column_group;
  1117. }
  1118. column_index += span;
  1119. }
  1120. }
  1121. }
  1122. void TableFormattingContext::BorderConflictFinder::collect_conflicting_row_group_elements()
  1123. {
  1124. m_row_group_elements_by_index.resize(m_context->m_rows.size());
  1125. size_t current_row_index = 0;
  1126. for_each_child_box_matching(m_context->table_box(), is_table_row_group, [&](auto& row_group_box) {
  1127. auto start_row_index = current_row_index;
  1128. size_t row_count = 0;
  1129. for_each_child_box_matching(row_group_box, is_table_row, [&](auto&) {
  1130. ++row_count;
  1131. });
  1132. for_each_child_box_matching(row_group_box, is_table_row, [&](auto&) {
  1133. m_row_group_elements_by_index[current_row_index] = RowGroupInfo {
  1134. .row_group = &row_group_box, .start_index = start_row_index, .row_count = row_count
  1135. };
  1136. ++current_row_index;
  1137. return IterationDecision::Continue;
  1138. });
  1139. });
  1140. }
  1141. Vector<TableFormattingContext::ConflictingEdge> TableFormattingContext::BorderConflictFinder::conflicting_edges(
  1142. Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1143. {
  1144. Vector<ConflictingEdge> result = {};
  1145. if (cell.column_index >= cell.column_span && edge == ConflictingSide::Left) {
  1146. auto maybe_cell_to_left = m_context->m_cells_by_coordinate[cell.row_index][cell.column_index - cell.column_span];
  1147. if (maybe_cell_to_left.has_value()) {
  1148. result.append({ maybe_cell_to_left->box, ConflictingSide::Right });
  1149. }
  1150. }
  1151. if (cell.column_index + cell.column_span < m_context->m_cells_by_coordinate[cell.row_index].size() && edge == ConflictingSide::Right) {
  1152. auto maybe_cell_to_right = m_context->m_cells_by_coordinate[cell.row_index][cell.column_index + cell.column_span];
  1153. if (maybe_cell_to_right.has_value()) {
  1154. result.append({ maybe_cell_to_right->box, ConflictingSide::Left });
  1155. }
  1156. }
  1157. if (cell.row_index >= cell.row_span && edge == ConflictingSide::Top) {
  1158. auto maybe_cell_above = m_context->m_cells_by_coordinate[cell.row_index - cell.row_span][cell.column_index];
  1159. if (maybe_cell_above.has_value()) {
  1160. result.append({ maybe_cell_above->box, ConflictingSide::Bottom });
  1161. }
  1162. }
  1163. if (cell.row_index + cell.row_span < m_context->m_cells_by_coordinate.size() && edge == ConflictingSide::Bottom) {
  1164. auto maybe_cell_below = m_context->m_cells_by_coordinate[cell.row_index + cell.row_span][cell.column_index];
  1165. if (maybe_cell_below.has_value()) {
  1166. result.append({ maybe_cell_below->box, ConflictingSide::Top });
  1167. }
  1168. }
  1169. if (edge == ConflictingSide::Top) {
  1170. result.append({ m_context->m_rows[cell.row_index].box, ConflictingSide::Top });
  1171. }
  1172. if (edge == ConflictingSide::Bottom) {
  1173. result.append({ m_context->m_rows[cell.row_index].box, ConflictingSide::Bottom });
  1174. }
  1175. if (cell.row_index >= cell.row_span && edge == ConflictingSide::Top) {
  1176. result.append({ m_context->m_rows[cell.row_index - cell.row_span].box, ConflictingSide::Bottom });
  1177. }
  1178. if (cell.row_index + cell.row_span < m_context->m_rows.size() && edge == ConflictingSide::Bottom) {
  1179. result.append({ m_context->m_rows[cell.row_index + cell.row_span].box, ConflictingSide::Top });
  1180. }
  1181. auto const& maybe_row_group = m_row_group_elements_by_index[cell.row_index];
  1182. if (maybe_row_group.has_value() && cell.row_index == maybe_row_group->start_index && edge == ConflictingSide::Top) {
  1183. result.append({ maybe_row_group->row_group, ConflictingSide::Top });
  1184. }
  1185. if (cell.row_index >= cell.row_span) {
  1186. auto const& maybe_row_group_above = m_row_group_elements_by_index[cell.row_index - cell.row_span];
  1187. if (maybe_row_group_above.has_value() && cell.row_index == maybe_row_group_above->start_index + maybe_row_group_above->row_count && edge == ConflictingSide::Top) {
  1188. result.append({ maybe_row_group_above->row_group, ConflictingSide::Bottom });
  1189. }
  1190. }
  1191. if (maybe_row_group.has_value() && cell.row_index == maybe_row_group->start_index + maybe_row_group->row_count - 1 && edge == ConflictingSide::Bottom) {
  1192. result.append({ maybe_row_group->row_group, ConflictingSide::Bottom });
  1193. }
  1194. if (cell.row_index + cell.row_span < m_row_group_elements_by_index.size()) {
  1195. auto const& maybe_row_group_below = m_row_group_elements_by_index[cell.row_index + cell.row_span];
  1196. if (maybe_row_group_below.has_value() && cell.row_index + cell.row_span == maybe_row_group_below->start_index && edge == ConflictingSide::Bottom) {
  1197. result.append({ maybe_row_group_below->row_group, ConflictingSide::Top });
  1198. }
  1199. }
  1200. if (m_col_elements_by_index[cell.column_index] && edge == ConflictingSide::Left) {
  1201. result.append({ m_col_elements_by_index[cell.column_index], ConflictingSide::Left });
  1202. }
  1203. if (cell.column_index >= cell.column_span && m_col_elements_by_index[cell.column_index - cell.column_span] && edge == ConflictingSide::Left) {
  1204. result.append({ m_col_elements_by_index[cell.column_index - cell.column_span], ConflictingSide::Right });
  1205. }
  1206. if (m_col_elements_by_index[cell.column_index] && edge == ConflictingSide::Right) {
  1207. result.append({ m_col_elements_by_index[cell.column_index], ConflictingSide::Right });
  1208. }
  1209. if (cell.column_index + cell.column_span < m_col_elements_by_index.size() && m_col_elements_by_index[cell.column_index + cell.column_span] && edge == ConflictingSide::Right) {
  1210. result.append({ m_col_elements_by_index[cell.column_index + cell.column_span], ConflictingSide::Left });
  1211. }
  1212. if (cell.row_index == 0 && edge == ConflictingSide::Top) {
  1213. if (m_col_elements_by_index[cell.column_index]) {
  1214. result.append({ m_col_elements_by_index[cell.column_index], ConflictingSide::Top });
  1215. }
  1216. result.append({ &m_context->table_box(), ConflictingSide::Top });
  1217. }
  1218. if (cell.row_index == m_context->m_rows.size() - 1 && edge == ConflictingSide::Bottom) {
  1219. if (m_col_elements_by_index[cell.column_index]) {
  1220. result.append({ m_col_elements_by_index[cell.column_index], ConflictingSide::Bottom });
  1221. }
  1222. result.append({ &m_context->table_box(), ConflictingSide::Bottom });
  1223. }
  1224. if (cell.column_index == 0 && edge == ConflictingSide::Left) {
  1225. result.append({ m_context->m_rows[cell.row_index].box, ConflictingSide::Left });
  1226. if (m_row_group_elements_by_index[cell.row_index].has_value()) {
  1227. result.append({ m_row_group_elements_by_index[cell.row_index]->row_group, ConflictingSide::Left });
  1228. }
  1229. result.append({ &m_context->table_box(), ConflictingSide::Left });
  1230. }
  1231. if (cell.column_index == m_context->m_columns.size() - 1 && edge == ConflictingSide::Right) {
  1232. result.append({ m_context->m_rows[cell.row_index].box, ConflictingSide::Right });
  1233. if (m_row_group_elements_by_index[cell.row_index].has_value()) {
  1234. result.append({ m_row_group_elements_by_index[cell.row_index]->row_group, ConflictingSide::Right });
  1235. }
  1236. result.append({ &m_context->table_box(), ConflictingSide::Right });
  1237. }
  1238. return result;
  1239. }
  1240. void TableFormattingContext::run(Box const& box, LayoutMode layout_mode, AvailableSpace const& available_space)
  1241. {
  1242. m_available_space = available_space;
  1243. auto total_captions_height = run_caption_layout(layout_mode, CSS::CaptionSide::Top);
  1244. // Determine the number of rows/columns the table requires.
  1245. calculate_row_column_grid(box);
  1246. border_conflict_resolution();
  1247. // Compute the minimum width of each column.
  1248. compute_cell_measures(available_space);
  1249. compute_outer_content_sizes();
  1250. compute_table_measures<Column>();
  1251. // https://www.w3.org/TR/css-tables-3/#row-layout
  1252. // Since during row layout the specified heights of cells in the row were ignored and cells that were spanning more than one rows
  1253. // have not been sized correctly, their height will need to be eventually distributed to the set of rows they spanned. This is done
  1254. // by running the same algorithm as the column measurement, with the span=1 value being initialized (for min-content) with the largest
  1255. // of the resulting height of the previous row layout, the height specified on the corresponding table-row (if any), and the largest
  1256. // height specified on cells that span this row only (the algorithm starts by considering cells of span 2 on top of that assignment).
  1257. compute_table_measures<Row>();
  1258. // Compute the width of the table.
  1259. compute_table_width();
  1260. if (available_space.width.is_intrinsic_sizing_constraint() && !available_space.height.is_intrinsic_sizing_constraint()) {
  1261. return;
  1262. }
  1263. // Distribute the width of the table among columns.
  1264. distribute_width_to_columns();
  1265. compute_table_height(layout_mode);
  1266. distribute_height_to_rows();
  1267. position_row_boxes();
  1268. position_cell_boxes();
  1269. m_state.get_mutable(table_box()).set_content_height(m_table_height);
  1270. total_captions_height += run_caption_layout(layout_mode, CSS::CaptionSide::Bottom);
  1271. // Table captions are positioned between the table margins and its borders (outside the grid box borders) as described in
  1272. // https://www.w3.org/TR/css-tables-3/#bounding-box-assignment
  1273. // A visual representation of this model can be found at https://www.w3.org/TR/css-tables-3/images/table_container.png
  1274. m_state.get_mutable(table_box()).margin_bottom += total_captions_height;
  1275. m_automatic_content_height = m_table_height;
  1276. }
  1277. CSSPixels TableFormattingContext::automatic_content_width() const
  1278. {
  1279. return greatest_child_width(context_box());
  1280. }
  1281. CSSPixels TableFormattingContext::automatic_content_height() const
  1282. {
  1283. return m_automatic_content_height;
  1284. }
  1285. template<>
  1286. size_t TableFormattingContext::cell_span<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1287. {
  1288. return cell.row_span;
  1289. }
  1290. template<>
  1291. size_t TableFormattingContext::cell_span<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1292. {
  1293. return cell.column_span;
  1294. }
  1295. template<>
  1296. size_t TableFormattingContext::cell_index<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1297. {
  1298. return cell.row_index;
  1299. }
  1300. template<>
  1301. size_t TableFormattingContext::cell_index<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1302. {
  1303. return cell.column_index;
  1304. }
  1305. template<>
  1306. CSSPixels TableFormattingContext::cell_min_size<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1307. {
  1308. return cell.outer_min_height;
  1309. }
  1310. template<>
  1311. CSSPixels TableFormattingContext::cell_min_size<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1312. {
  1313. return cell.outer_min_width;
  1314. }
  1315. template<>
  1316. CSSPixels TableFormattingContext::cell_max_size<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1317. {
  1318. return cell.outer_max_height;
  1319. }
  1320. template<>
  1321. CSSPixels TableFormattingContext::cell_max_size<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1322. {
  1323. return cell.outer_max_width;
  1324. }
  1325. template<>
  1326. CSSPixels TableFormattingContext::border_spacing<TableFormattingContext::Row>()
  1327. {
  1328. return border_spacing_vertical();
  1329. }
  1330. template<>
  1331. CSSPixels TableFormattingContext::border_spacing<TableFormattingContext::Column>()
  1332. {
  1333. return border_spacing_horizontal();
  1334. }
  1335. CSSPixels TableFormattingContext::border_spacing_horizontal() const
  1336. {
  1337. auto const& computed_values = table_box().computed_values();
  1338. // 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):
  1339. // https://www.w3.org/TR/css-tables-3/#collapsed-style-overrides
  1340. if (computed_values.border_collapse() == CSS::BorderCollapse::Collapse)
  1341. return 0;
  1342. return computed_values.border_spacing_horizontal().to_px(table_box());
  1343. }
  1344. CSSPixels TableFormattingContext::border_spacing_vertical() const
  1345. {
  1346. auto const& computed_values = table_box().computed_values();
  1347. // 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):
  1348. // https://www.w3.org/TR/css-tables-3/#collapsed-style-overrides
  1349. if (computed_values.border_collapse() == CSS::BorderCollapse::Collapse)
  1350. return 0;
  1351. return computed_values.border_spacing_vertical().to_px(table_box());
  1352. }
  1353. template<>
  1354. Vector<TableFormattingContext::Row>& TableFormattingContext::table_rows_or_columns()
  1355. {
  1356. return m_rows;
  1357. }
  1358. template<>
  1359. Vector<TableFormattingContext::Column>& TableFormattingContext::table_rows_or_columns()
  1360. {
  1361. return m_columns;
  1362. }
  1363. }