TableFormattingContext.cpp 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <andreas@ladybird.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/HTMLTableColElement.h>
  9. #include <LibWeb/Layout/BlockFormattingContext.h>
  10. #include <LibWeb/Layout/Box.h>
  11. #include <LibWeb/Layout/InlineFormattingContext.h>
  12. #include <LibWeb/Layout/TableFormattingContext.h>
  13. namespace Web::Layout {
  14. TableFormattingContext::TableFormattingContext(LayoutState& state, LayoutMode layout_mode, Box const& root, FormattingContext* parent)
  15. : FormattingContext(Type::Table, layout_mode, state, root, parent)
  16. {
  17. }
  18. TableFormattingContext::~TableFormattingContext() = default;
  19. static inline bool is_table_column_group(Box const& box)
  20. {
  21. return box.display().is_table_column_group();
  22. }
  23. static inline bool is_table_column(Box const& box)
  24. {
  25. return box.display().is_table_column();
  26. }
  27. CSSPixels TableFormattingContext::run_caption_layout(CSS::CaptionSide phase)
  28. {
  29. CSSPixels caption_height = 0;
  30. for (auto* child = table_box().first_child(); child; child = child->next_sibling()) {
  31. if (!child->display().is_table_caption() || child->computed_values().caption_side() != phase) {
  32. continue;
  33. }
  34. // The caption boxes are principal block-level boxes that retain their own content, padding, margin, and border areas,
  35. // and are rendered as normal block boxes inside the table wrapper box, as described in https://www.w3.org/TR/CSS22/tables.html#model
  36. auto caption_context = make<BlockFormattingContext>(m_state, m_layout_mode, *verify_cast<BlockContainer>(child), this);
  37. caption_context->run(*m_available_space);
  38. VERIFY(child->is_box());
  39. auto const& child_box = static_cast<Box const&>(*child);
  40. // FIXME: Since caption only has inline children, BlockFormattingContext doesn't resolve the vertical metrics.
  41. // We need to do it manually here.
  42. caption_context->resolve_vertical_box_model_metrics(child_box, m_available_space->width.to_px_or_zero());
  43. auto const& caption_state = m_state.get(child_box);
  44. if (phase == CSS::CaptionSide::Top) {
  45. m_state.get_mutable(table_box()).set_content_y(caption_state.content_height() + caption_state.margin_box_bottom());
  46. } else {
  47. m_state.get_mutable(child_box).set_content_y(
  48. m_state.get(table_box()).margin_box_height() + caption_state.margin_box_top());
  49. }
  50. caption_height += caption_state.margin_box_height();
  51. }
  52. return caption_height;
  53. }
  54. void TableFormattingContext::compute_constrainedness()
  55. {
  56. // Definition of constrainedness: https://www.w3.org/TR/css-tables-3/#constrainedness
  57. // NB: The definition uses https://www.w3.org/TR/CSS21/visudet.html#propdef-width for width, which doesn't include
  58. // keyword values. The remaining checks can be simplified to checking whether the size is a length.
  59. size_t column_index = 0;
  60. TableGrid::for_each_child_box_matching(table_box(), is_table_column_group, [&](auto& column_group_box) {
  61. TableGrid::for_each_child_box_matching(column_group_box, is_table_column, [&](auto& column_box) {
  62. auto const& computed_values = column_box.computed_values();
  63. if (computed_values.width().is_length()) {
  64. m_columns[column_index].is_constrained = true;
  65. }
  66. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*column_box.dom_node());
  67. unsigned span = col_node.get_attribute_value(HTML::AttributeNames::span).to_number<unsigned>().value_or(1);
  68. column_index += span;
  69. });
  70. });
  71. for (auto& row : m_rows) {
  72. auto const& computed_values = row.box->computed_values();
  73. if (computed_values.height().is_length()) {
  74. row.is_constrained = true;
  75. }
  76. }
  77. for (auto& cell : m_cells) {
  78. auto const& computed_values = cell.box->computed_values();
  79. if (computed_values.width().is_length()) {
  80. m_columns[cell.column_index].is_constrained = true;
  81. }
  82. if (computed_values.height().is_length()) {
  83. m_rows[cell.row_index].is_constrained = true;
  84. }
  85. }
  86. }
  87. void TableFormattingContext::compute_cell_measures()
  88. {
  89. // Implements https://www.w3.org/TR/css-tables-3/#computing-cell-measures.
  90. auto const& containing_block = m_state.get(*table_wrapper().containing_block());
  91. compute_constrainedness();
  92. for (auto& cell : m_cells) {
  93. auto const& computed_values = cell.box->computed_values();
  94. CSSPixels padding_top = computed_values.padding().top().to_px(cell.box, containing_block.content_height());
  95. CSSPixels padding_bottom = computed_values.padding().bottom().to_px(cell.box, containing_block.content_height());
  96. CSSPixels padding_left = computed_values.padding().left().to_px(cell.box, containing_block.content_width());
  97. CSSPixels padding_right = computed_values.padding().right().to_px(cell.box, containing_block.content_width());
  98. auto const& cell_state = m_state.get(cell.box);
  99. auto use_collapsing_borders_model = cell_state.override_borders_data().has_value();
  100. // Implement the collapsing border model https://www.w3.org/TR/CSS22/tables.html#collapsing-borders.
  101. CSSPixels border_top = use_collapsing_borders_model ? round(cell_state.border_top / 2) : computed_values.border_top().width;
  102. CSSPixels border_bottom = use_collapsing_borders_model ? round(cell_state.border_bottom / 2) : computed_values.border_bottom().width;
  103. CSSPixels border_left = use_collapsing_borders_model ? round(cell_state.border_left / 2) : computed_values.border_left().width;
  104. CSSPixels border_right = use_collapsing_borders_model ? round(cell_state.border_right / 2) : computed_values.border_right().width;
  105. auto min_content_width = calculate_min_content_width(cell.box);
  106. auto max_content_width = calculate_max_content_width(cell.box);
  107. auto min_content_height = calculate_min_content_height(cell.box, max_content_width);
  108. auto max_content_height = calculate_max_content_height(cell.box, min_content_width);
  109. // The outer min-content height of a table-cell is max(min-height, min-content height) adjusted by the cell intrinsic offsets.
  110. auto min_height = computed_values.min_height().to_px(cell.box, containing_block.content_height());
  111. auto cell_intrinsic_height_offsets = padding_top + padding_bottom + border_top + border_bottom;
  112. cell.outer_min_height = max(min_height, min_content_height) + cell_intrinsic_height_offsets;
  113. // The outer min-content width of a table-cell is max(min-width, min-content width) adjusted by the cell intrinsic offsets.
  114. auto min_width = computed_values.min_width().to_px(cell.box, containing_block.content_width());
  115. auto cell_intrinsic_width_offsets = padding_left + padding_right + border_left + border_right;
  116. // For fixed mode, according to https://www.w3.org/TR/css-tables-3/#computing-column-measures:
  117. // The min-content and max-content width of cells is considered zero unless they are directly specified as a length-percentage,
  118. // in which case they are resolved based on the table width (if it is definite, otherwise use 0).
  119. auto width_is_specified_length_or_percentage = computed_values.width().is_length() || computed_values.width().is_percentage();
  120. if (!use_fixed_mode_layout() || width_is_specified_length_or_percentage) {
  121. cell.outer_min_width = max(min_width, min_content_width) + cell_intrinsic_width_offsets;
  122. }
  123. // The tables specification isn't explicit on how to use the height and max-height CSS properties in the outer max-content formulas.
  124. // However, during this early phase we don't have enough information to resolve percentage sizes yet and the formulas for outer sizes
  125. // in the specification give enough clues to pick defaults in a way that makes sense.
  126. auto height = computed_values.height().is_length() ? computed_values.height().to_px(cell.box, containing_block.content_height()) : 0;
  127. auto max_height = computed_values.max_height().is_length() ? computed_values.max_height().to_px(cell.box, containing_block.content_height()) : CSSPixels::max();
  128. if (m_rows[cell.row_index].is_constrained) {
  129. // The outer max-content height of a table-cell in a constrained row is
  130. // max(min-height, height, min-content height, min(max-height, height)) adjusted by the cell intrinsic offsets.
  131. // NB: min(max-height, height) doesn't have any effect here, we can simplify the expression to max(min-height, height, min-content height).
  132. cell.outer_max_height = max(min_height, max(height, min_content_height)) + cell_intrinsic_height_offsets;
  133. } else {
  134. // The outer max-content height of a table-cell in a non-constrained row is
  135. // max(min-height, height, min-content height, min(max-height, max-content height)) adjusted by the cell intrinsic offsets.
  136. cell.outer_max_height = max(min_height, max(height, max(min_content_height, min(max_height, max_content_height)))) + cell_intrinsic_height_offsets;
  137. }
  138. // See the explanation for height and max_height above.
  139. auto width = computed_values.width().is_length() ? computed_values.width().to_px(cell.box, containing_block.content_width()) : 0;
  140. auto max_width = computed_values.max_width().is_length() ? computed_values.max_width().to_px(cell.box, containing_block.content_width()) : CSSPixels::max();
  141. if (use_fixed_mode_layout() && !width_is_specified_length_or_percentage) {
  142. continue;
  143. }
  144. if (m_columns[cell.column_index].is_constrained) {
  145. // The outer max-content width of a table-cell in a constrained column is
  146. // max(min-width, width, min-content width, min(max-width, width)) adjusted by the cell intrinsic offsets.
  147. // NB: min(max-width, width) doesn't have any effect here, we can simplify the expression to max(min-width, width, min-content width).
  148. cell.outer_max_width = max(min_width, max(width, min_content_width)) + cell_intrinsic_width_offsets;
  149. } else {
  150. // The outer max-content width of a table-cell in a non-constrained column is
  151. // max(min-width, width, min-content width, min(max-width, max-content width)) adjusted by the cell intrinsic offsets.
  152. cell.outer_max_width = max(min_width, max(width, max(min_content_width, min(max_width, max_content_width)))) + cell_intrinsic_width_offsets;
  153. }
  154. }
  155. }
  156. void TableFormattingContext::compute_outer_content_sizes()
  157. {
  158. auto const& containing_block = m_state.get(*table_wrapper().containing_block());
  159. size_t column_index = 0;
  160. TableGrid::for_each_child_box_matching(table_box(), is_table_column_group, [&](auto& column_group_box) {
  161. TableGrid::for_each_child_box_matching(column_group_box, is_table_column, [&](auto& column_box) {
  162. auto const& computed_values = column_box.computed_values();
  163. auto min_width = computed_values.min_width().to_px(column_box, containing_block.content_width());
  164. auto max_width = computed_values.max_width().is_length() ? computed_values.max_width().to_px(column_box, containing_block.content_width()) : CSSPixels::max();
  165. auto width = computed_values.width().to_px(column_box, containing_block.content_width());
  166. // The outer min-content width of a table-column or table-column-group is max(min-width, width).
  167. m_columns[column_index].min_size = max(min_width, width);
  168. // The outer max-content width of a table-column or table-column-group is max(min-width, min(max-width, width)).
  169. m_columns[column_index].max_size = max(min_width, min(max_width, width));
  170. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*column_box.dom_node());
  171. unsigned span = col_node.get_attribute_value(HTML::AttributeNames::span).to_number<unsigned>().value_or(1);
  172. column_index += span;
  173. });
  174. });
  175. for (auto& row : m_rows) {
  176. auto const& computed_values = row.box->computed_values();
  177. auto min_height = computed_values.min_height().to_px(row.box, containing_block.content_height());
  178. auto max_height = computed_values.max_height().is_length() ? computed_values.max_height().to_px(row.box, containing_block.content_height()) : CSSPixels::max();
  179. auto height = computed_values.height().to_px(row.box, containing_block.content_height());
  180. // The outer min-content height of a table-row or table-row-group is max(min-height, height).
  181. row.min_size = max(min_height, height);
  182. // The outer max-content height of a table-row or table-row-group is max(min-height, min(max-height, height)).
  183. row.max_size = max(min_height, min(max_height, height));
  184. }
  185. }
  186. template<>
  187. void TableFormattingContext::initialize_table_measures<TableFormattingContext::Row>()
  188. {
  189. auto const& containing_block = m_state.get(*table_wrapper().containing_block());
  190. for (auto& cell : m_cells) {
  191. auto const& computed_values = cell.box->computed_values();
  192. if (cell.row_span == 1) {
  193. auto specified_height = computed_values.height().to_px(cell.box, containing_block.content_height());
  194. // https://www.w3.org/TR/css-tables-3/#row-layout makes specified cell height part of the initialization formula for row table measures:
  195. // This is done by running the same algorithm as the column measurement, with the span=1 value being initialized (for min-content) with
  196. // the largest of the resulting height of the previous row layout, the height specified on the corresponding table-row (if any), and
  197. // 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).
  198. m_rows[cell.row_index].min_size = max(m_rows[cell.row_index].min_size, max(cell.outer_min_height, specified_height));
  199. m_rows[cell.row_index].max_size = max(m_rows[cell.row_index].max_size, cell.outer_max_height);
  200. }
  201. }
  202. }
  203. template<>
  204. void TableFormattingContext::initialize_table_measures<TableFormattingContext::Column>()
  205. {
  206. // Implement the following parts of the specification, accounting for fixed layout mode:
  207. // https://www.w3.org/TR/css-tables-3/#min-content-width-of-a-column-based-on-cells-of-span-up-to-1
  208. // https://www.w3.org/TR/css-tables-3/#max-content-width-of-a-column-based-on-cells-of-span-up-to-1
  209. for (auto& cell : m_cells) {
  210. if (cell.column_span == 1 && (cell.row_index == 0 || !use_fixed_mode_layout())) {
  211. m_columns[cell.column_index].min_size = max(m_columns[cell.column_index].min_size, cell.outer_min_width);
  212. m_columns[cell.column_index].max_size = max(m_columns[cell.column_index].max_size, cell.outer_max_width);
  213. }
  214. }
  215. }
  216. template<class RowOrColumn>
  217. void TableFormattingContext::compute_intrinsic_percentage(size_t max_cell_span)
  218. {
  219. auto& rows_or_columns = table_rows_or_columns<RowOrColumn>();
  220. // https://www.w3.org/TR/css-tables-3/#intrinsic-percentage-width-of-a-column-based-on-cells-of-span-up-to-1
  221. initialize_intrinsic_percentages_from_rows_or_columns<RowOrColumn>();
  222. initialize_intrinsic_percentages_from_cells<RowOrColumn>();
  223. // Stores intermediate values for intrinsic percentage based on cells of span up to N for the iterative algorithm, to store them back at the end of the step.
  224. Vector<double> intrinsic_percentage_contribution_by_index;
  225. intrinsic_percentage_contribution_by_index.resize(rows_or_columns.size());
  226. for (size_t rc_index = 0; rc_index < rows_or_columns.size(); ++rc_index) {
  227. intrinsic_percentage_contribution_by_index[rc_index] = rows_or_columns[rc_index].intrinsic_percentage;
  228. }
  229. for (size_t current_span = 2; current_span <= max_cell_span; current_span++) {
  230. // https://www.w3.org/TR/css-tables-3/#intrinsic-percentage-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  231. for (auto& cell : m_cells) {
  232. auto cell_span_value = cell_span<RowOrColumn>(cell);
  233. if (cell_span_value != current_span) {
  234. continue;
  235. }
  236. auto cell_start_rc_index = cell_index<RowOrColumn>(cell);
  237. auto cell_end_rc_index = cell_start_rc_index + cell_span_value;
  238. // 1. Start with the percentage contribution of the cell.
  239. CSSPixels cell_contribution = CSSPixels::nearest_value_for(cell_percentage_contribution<RowOrColumn>(cell));
  240. // 2. Subtract the intrinsic percentage width of the column based on cells of span up to N-1 of all columns
  241. // that the cell spans. If this gives a negative result, change it to 0%.
  242. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  243. cell_contribution -= CSSPixels::nearest_value_for(rows_or_columns[rc_index].intrinsic_percentage);
  244. cell_contribution = max(cell_contribution, 0);
  245. }
  246. // Compute the sum of the non-spanning max-content sizes of all rows / columns spanned by the cell that have an intrinsic percentage
  247. // size of the row / column based on cells of span up to N-1 equal to 0%, to be used in step 3 of the cell contribution algorithm.
  248. CSSPixels width_sum_of_columns_with_zero_intrinsic_percentage = 0;
  249. size_t number_of_columns_with_zero_intrinsic_percentage = 0;
  250. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  251. if (rows_or_columns[rc_index].intrinsic_percentage == 0) {
  252. width_sum_of_columns_with_zero_intrinsic_percentage += rows_or_columns[rc_index].max_size;
  253. ++number_of_columns_with_zero_intrinsic_percentage;
  254. }
  255. }
  256. for (size_t rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  257. // If the intrinsic percentage width of a column based on cells of span up to N-1 is greater than 0%, then the intrinsic percentage width of
  258. // the column based on cells of span up to N is the same as the intrinsic percentage width of the column based on cells of span up to N-1.
  259. if (rows_or_columns[rc_index].intrinsic_percentage > 0) {
  260. continue;
  261. }
  262. // Otherwise, it is the largest of the contributions of the cells in the column whose colSpan is N,
  263. // where the contribution of a cell is the result of taking the following steps:
  264. // 1. Start with the percentage contribution of the cell.
  265. // 2. Subtract the intrinsic percentage width of the column based on cells of span up to N-1 of all columns
  266. // that the cell spans. If this gives a negative result, change it to 0%.
  267. // 3. Multiply by the ratio of the column’s non-spanning max-content width to the sum of the non-spanning max-content widths of all
  268. // columns spanned by the cell that have an intrinsic percentage width of the column based on cells of span up to N-1 equal to 0%.
  269. CSSPixels ajusted_cell_contribution;
  270. if (width_sum_of_columns_with_zero_intrinsic_percentage != 0) {
  271. ajusted_cell_contribution = cell_contribution.scaled(rows_or_columns[rc_index].max_size / static_cast<double>(width_sum_of_columns_with_zero_intrinsic_percentage));
  272. } else {
  273. // However, if this ratio is undefined because the denominator is zero, instead use the 1 divided by the number of columns
  274. // spanned by the cell that have an intrinsic percentage width of the column based on cells of span up to N-1 equal to zero.
  275. ajusted_cell_contribution = cell_contribution * 1 / number_of_columns_with_zero_intrinsic_percentage;
  276. }
  277. intrinsic_percentage_contribution_by_index[rc_index] = max(static_cast<double>(ajusted_cell_contribution), intrinsic_percentage_contribution_by_index[rc_index]);
  278. }
  279. }
  280. for (size_t rc_index = 0; rc_index < rows_or_columns.size(); ++rc_index) {
  281. rows_or_columns[rc_index].intrinsic_percentage = intrinsic_percentage_contribution_by_index[rc_index];
  282. }
  283. }
  284. // Clamp total intrinsic percentage to 100%: https://www.w3.org/TR/css-tables-3/#intrinsic-percentage-width-of-a-column
  285. double total_intrinsic_percentage = 0;
  286. for (auto& rows_or_column : rows_or_columns) {
  287. rows_or_column.intrinsic_percentage = max(min(100 - total_intrinsic_percentage, rows_or_column.intrinsic_percentage), 0);
  288. total_intrinsic_percentage += rows_or_column.intrinsic_percentage;
  289. }
  290. }
  291. template<class RowOrColumn>
  292. void TableFormattingContext::compute_table_measures()
  293. {
  294. initialize_table_measures<RowOrColumn>();
  295. auto& rows_or_columns = table_rows_or_columns<RowOrColumn>();
  296. size_t max_cell_span = 1;
  297. for (auto& cell : m_cells) {
  298. max_cell_span = max(max_cell_span, cell_span<RowOrColumn>(cell));
  299. }
  300. // Since the intrinsic percentage specification uses non-spanning max-content size for the iterative algorithm,
  301. // run it before we compute the spanning max-content size with its own iterative algorithm for span up to N.
  302. compute_intrinsic_percentage<RowOrColumn>(max_cell_span);
  303. for (size_t current_span = 2; current_span <= max_cell_span; current_span++) {
  304. // https://www.w3.org/TR/css-tables-3/#min-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  305. Vector<Vector<CSSPixels>> cell_min_contributions_by_rc_index;
  306. cell_min_contributions_by_rc_index.resize(rows_or_columns.size());
  307. // https://www.w3.org/TR/css-tables-3/#max-content-width-of-a-column-based-on-cells-of-span-up-to-n-n--1
  308. Vector<Vector<CSSPixels>> cell_max_contributions_by_rc_index;
  309. cell_max_contributions_by_rc_index.resize(rows_or_columns.size());
  310. for (auto& cell : m_cells) {
  311. auto cell_span_value = cell_span<RowOrColumn>(cell);
  312. if (cell_span_value == current_span) {
  313. // 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.
  314. auto cell_start_rc_index = cell_index<RowOrColumn>(cell);
  315. auto cell_end_rc_index = cell_start_rc_index + cell_span_value;
  316. CSSPixels baseline_max_content_size = 0;
  317. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  318. baseline_max_content_size += rows_or_columns[rc_index].max_size;
  319. }
  320. CSSPixels baseline_min_content_size = 0;
  321. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  322. baseline_min_content_size += rows_or_columns[rc_index].min_size;
  323. }
  324. // 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.
  325. auto baseline_border_spacing = border_spacing<RowOrColumn>() * (cell_span_value - 1);
  326. // Add contribution from all rows / columns, since we've weighted the gap to the desired spanned size by the the
  327. // 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.
  328. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  329. // The contribution of the cell is the sum of:
  330. // the min-content size of the column based on cells of span up to N-1
  331. auto cell_min_contribution = rows_or_columns[rc_index].min_size;
  332. // the product of:
  333. // - the ratio of:
  334. // - the max-content size of the row / column based on cells of span up to N-1 of the row / column minus the
  335. // min-content size of the row / column based on cells of span up to N-1 of the row / column, to
  336. // - the baseline max-content size minus the baseline min-content size
  337. // or zero if this ratio is undefined, and
  338. // - the outer min-content size of the cell minus the baseline min-content size and the baseline border spacing, clamped
  339. // to be at least 0 and at most the difference between the baseline max-content size and the baseline min-content size
  340. auto normalized_max_min_diff = baseline_max_content_size != baseline_min_content_size
  341. ? (rows_or_columns[rc_index].max_size - rows_or_columns[rc_index].min_size) / static_cast<double>(baseline_max_content_size - baseline_min_content_size)
  342. : 0;
  343. auto clamped_diff_to_baseline_min = min(
  344. max(cell_min_size<RowOrColumn>(cell) - baseline_min_content_size - baseline_border_spacing, 0),
  345. baseline_max_content_size - baseline_min_content_size);
  346. cell_min_contribution += CSSPixels::nearest_value_for(normalized_max_min_diff * clamped_diff_to_baseline_min);
  347. // the product of:
  348. // - 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
  349. // - the outer min-content size of the cell minus the baseline max-content size and baseline border spacing, or 0 if this is negative
  350. if (baseline_max_content_size != 0) {
  351. cell_min_contribution += CSSPixels::nearest_value_for(rows_or_columns[rc_index].max_size / static_cast<double>(baseline_max_content_size))
  352. * max(CSSPixels(0), cell_min_size<RowOrColumn>(cell) - baseline_max_content_size - baseline_border_spacing);
  353. }
  354. // The contribution of the cell is the sum of:
  355. // the max-content size of the column based on cells of span up to N-1
  356. auto cell_max_contribution = rows_or_columns[rc_index].max_size;
  357. // and the product of:
  358. // - 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
  359. // - 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
  360. if (baseline_max_content_size != 0) {
  361. cell_max_contribution += CSSPixels::nearest_value_for(rows_or_columns[rc_index].max_size / static_cast<double>(baseline_max_content_size))
  362. * max(CSSPixels(0), cell_max_size<RowOrColumn>(cell) - baseline_max_content_size - baseline_border_spacing);
  363. }
  364. cell_min_contributions_by_rc_index[rc_index].append(cell_min_contribution);
  365. cell_max_contributions_by_rc_index[rc_index].append(cell_max_contribution);
  366. }
  367. }
  368. }
  369. for (size_t rc_index = 0; rc_index < rows_or_columns.size(); rc_index++) {
  370. // min-content size of a row / column based on cells of span up to N (N > 1) is
  371. // the largest of the min-content size of the row / column based on cells of span up to N-1 and
  372. // the contributions of the cells in the row / column whose rowSpan / colSpan is N
  373. for (auto min_contribution : cell_min_contributions_by_rc_index[rc_index])
  374. rows_or_columns[rc_index].min_size = max(rows_or_columns[rc_index].min_size, min_contribution);
  375. // max-content size of a row / column based on cells of span up to N (N > 1) is
  376. // the largest of the max-content size based on cells of span up to N-1 and the contributions of
  377. // the cells in the row / column whose rowSpan / colSpan is N
  378. for (auto max_contribution : cell_max_contributions_by_rc_index[rc_index])
  379. rows_or_columns[rc_index].max_size = max(rows_or_columns[rc_index].max_size, max_contribution);
  380. }
  381. }
  382. }
  383. CSSPixels TableFormattingContext::compute_capmin()
  384. {
  385. // The caption width minimum (CAPMIN) is the largest of the table captions min-content contribution:
  386. // https://drafts.csswg.org/css-tables-3/#computing-the-table-width
  387. CSSPixels capmin = 0;
  388. for (auto* child = table_box().first_child(); child; child = child->next_sibling()) {
  389. if (!child->display().is_table_caption()) {
  390. continue;
  391. }
  392. VERIFY(child->is_box());
  393. capmin = max(calculate_min_content_width(static_cast<Box const&>(*child)), capmin);
  394. }
  395. return capmin;
  396. }
  397. static bool width_is_auto_relative_to_state(CSS::Size const& width, LayoutState::UsedValues const& state)
  398. {
  399. return width.is_auto() || (width.contains_percentage() && !state.has_definite_width());
  400. }
  401. void TableFormattingContext::compute_table_width()
  402. {
  403. // https://drafts.csswg.org/css-tables-3/#computing-the-table-width
  404. auto& table_box_state = m_state.get_mutable(table_box());
  405. auto& computed_values = table_box().computed_values();
  406. auto width_of_table_containing_block = m_available_space->width;
  407. // Percentages on 'width' and 'height' on the table are relative to the table wrapper box's containing block,
  408. // not the table wrapper box itself.
  409. auto const& containing_block_state = m_state.get(*table_wrapper().containing_block());
  410. CSSPixels width_of_table_wrapper_containing_block = containing_block_state.content_width();
  411. // Compute undistributable space due to border spacing: https://www.w3.org/TR/css-tables-3/#computing-undistributable-space.
  412. auto undistributable_space = (m_columns.size() + 1) * border_spacing_horizontal();
  413. // The row/column-grid width minimum (GRIDMIN) width is the sum of the min-content width
  414. // of all the columns plus cell spacing or borders.
  415. CSSPixels grid_min = 0;
  416. for (auto& column : m_columns) {
  417. grid_min += column.min_size;
  418. }
  419. grid_min += undistributable_space;
  420. // The row/column-grid width maximum (GRIDMAX) width is the sum of the max-content width
  421. // of all the columns plus cell spacing or borders.
  422. CSSPixels grid_max = 0;
  423. for (auto& column : m_columns) {
  424. grid_max += column.max_size;
  425. }
  426. grid_max += undistributable_space;
  427. // The used min-width of a table is the greater of the resolved min-width, CAPMIN, and GRIDMIN.
  428. auto used_min_width = max(grid_min, compute_capmin());
  429. if (!computed_values.min_width().is_auto()) {
  430. used_min_width = max(used_min_width, computed_values.min_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  431. }
  432. CSSPixels used_width;
  433. if (m_available_space->width.is_min_content()) {
  434. used_width = grid_min;
  435. } else if (m_available_space->width.is_max_content()) {
  436. used_width = grid_max;
  437. } else if (width_is_auto_relative_to_state(computed_values.width(), containing_block_state)) {
  438. // If the table-root has 'width: auto', the used width is the greater of
  439. // min(GRIDMAX, the table’s containing block width), the used min-width of the table.
  440. if (width_of_table_containing_block.is_definite())
  441. used_width = max(min(grid_max, width_of_table_containing_block.to_px_or_zero()), used_min_width);
  442. else
  443. used_width = max(grid_max, used_min_width);
  444. // https://www.w3.org/TR/CSS22/tables.html#auto-table-layout
  445. // A percentage value for a column width is relative to the table width. If the table has 'width: auto',
  446. // a percentage represents a constraint on the column's width, which a UA should try to satisfy.
  447. for (auto& cell : m_cells) {
  448. auto const& cell_width = cell.box->computed_values().width();
  449. if (cell_width.is_percentage()) {
  450. CSSPixels adjusted_used_width = undistributable_space;
  451. if (cell_width.percentage().value() != 0)
  452. adjusted_used_width += CSSPixels::nearest_value_for(ceil(100 / cell_width.percentage().value() * cell.outer_max_width));
  453. if (width_of_table_containing_block.is_definite())
  454. used_width = min(max(used_width, adjusted_used_width), width_of_table_containing_block.to_px_or_zero());
  455. else
  456. used_width = max(used_width, adjusted_used_width);
  457. }
  458. }
  459. } else if (computed_values.width().is_max_content()) {
  460. used_width = grid_max;
  461. } else {
  462. // If the table-root’s width property has a computed value (resolving to
  463. // resolved-table-width) other than auto, the used width is the greater
  464. // of resolved-table-width, and the used min-width of the table.
  465. CSSPixels resolved_table_width = computed_values.width().to_px(table_box(), width_of_table_wrapper_containing_block);
  466. // Since used_width is content width, we need to subtract the border spacing from the specified width for a consistent comparison.
  467. used_width = max(resolved_table_width - table_box_state.border_box_left() - table_box_state.border_box_right(), used_min_width);
  468. if (!should_treat_max_width_as_none(table_box(), m_available_space->width))
  469. used_width = min(used_width, computed_values.max_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  470. }
  471. table_box_state.set_content_width(used_width);
  472. auto& table_wrapper_box_state = m_state.get_mutable(table_wrapper());
  473. table_wrapper_box_state.set_content_width(table_box_state.border_box_width());
  474. }
  475. CSSPixels TableFormattingContext::compute_columns_total_used_width() const
  476. {
  477. CSSPixels total_used_width = 0;
  478. for (auto& column : m_columns) {
  479. total_used_width += column.used_width;
  480. }
  481. return total_used_width;
  482. }
  483. static CSSPixels compute_columns_total_candidate_width(Vector<CSSPixels> const& candidate_widths)
  484. {
  485. CSSPixels total_candidate_width = 0;
  486. for (auto width : candidate_widths) {
  487. total_candidate_width += width;
  488. }
  489. return total_candidate_width;
  490. }
  491. void TableFormattingContext::commit_candidate_column_widths(Vector<CSSPixels> const& candidate_widths)
  492. {
  493. VERIFY(candidate_widths.size() == m_columns.size());
  494. for (size_t i = 0; i < m_columns.size(); ++i) {
  495. m_columns[i].used_width = candidate_widths[i];
  496. }
  497. }
  498. void TableFormattingContext::assign_columns_width_linear_combination(Vector<CSSPixels> const& candidate_widths, CSSPixels available_width)
  499. {
  500. auto columns_total_candidate_width = compute_columns_total_candidate_width(candidate_widths);
  501. auto columns_total_used_width = compute_columns_total_used_width();
  502. if (columns_total_candidate_width == columns_total_used_width) {
  503. return;
  504. }
  505. auto candidate_weight = (available_width - columns_total_used_width) / static_cast<double>(columns_total_candidate_width - columns_total_used_width);
  506. for (size_t i = 0; i < m_columns.size(); ++i) {
  507. auto& column = m_columns[i];
  508. column.used_width = CSSPixels::nearest_value_for(candidate_weight * candidate_widths[i] + (1 - candidate_weight) * column.used_width);
  509. }
  510. }
  511. template<class ColumnFilter, class BaseWidthGetter>
  512. bool TableFormattingContext::distribute_excess_width_proportionally_to_base_width(CSSPixels excess_width, ColumnFilter column_filter, BaseWidthGetter base_width_getter)
  513. {
  514. bool found_matching_columns = false;
  515. CSSPixels total_base_width = 0;
  516. for (auto const& column : m_columns) {
  517. if (column_filter(column)) {
  518. total_base_width += base_width_getter(column);
  519. found_matching_columns = true;
  520. }
  521. }
  522. if (!found_matching_columns) {
  523. return false;
  524. }
  525. VERIFY(total_base_width > 0);
  526. for (auto& column : m_columns) {
  527. if (column_filter(column)) {
  528. column.used_width += CSSPixels::nearest_value_for(excess_width * base_width_getter(column) / static_cast<double>(total_base_width));
  529. }
  530. }
  531. return true;
  532. }
  533. template<class ColumnFilter>
  534. bool TableFormattingContext::distribute_excess_width_equally(CSSPixels excess_width, ColumnFilter column_filter)
  535. {
  536. size_t matching_column_count = 0;
  537. for (auto const& column : m_columns) {
  538. if (column_filter(column)) {
  539. ++matching_column_count;
  540. }
  541. }
  542. if (matching_column_count == 0) {
  543. return false;
  544. }
  545. for (auto& column : m_columns) {
  546. if (column_filter(column)) {
  547. column.used_width += excess_width / matching_column_count;
  548. }
  549. }
  550. return matching_column_count;
  551. }
  552. template<class ColumnFilter>
  553. bool TableFormattingContext::distribute_excess_width_by_intrinsic_percentage(CSSPixels excess_width, ColumnFilter column_filter)
  554. {
  555. bool found_matching_columns = false;
  556. double total_percentage_width = 0;
  557. for (auto const& column : m_columns) {
  558. if (column_filter(column)) {
  559. found_matching_columns = true;
  560. total_percentage_width += column.intrinsic_percentage;
  561. }
  562. }
  563. if (!found_matching_columns) {
  564. return false;
  565. }
  566. for (auto& column : m_columns) {
  567. if (column_filter(column)) {
  568. column.used_width += CSSPixels::nearest_value_for(excess_width * column.intrinsic_percentage / total_percentage_width);
  569. }
  570. }
  571. return true;
  572. }
  573. void TableFormattingContext::distribute_width_to_columns()
  574. {
  575. // Implements https://www.w3.org/TR/css-tables-3/#width-distribution-algorithm
  576. // The total horizontal border spacing is defined for each table:
  577. // - 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
  578. // - Otherwise, 0
  579. auto total_horizontal_border_spacing = m_columns.is_empty() ? 0 : (m_columns.size() + 1) * border_spacing_horizontal();
  580. // The assignable table width is the used width of the table minus the total horizontal border spacing (if any).
  581. // This is the width that we will be able to allocate to the columns.
  582. CSSPixels const available_width = m_state.get(table_box()).content_width() - total_horizontal_border_spacing;
  583. Vector<CSSPixels> candidate_widths;
  584. candidate_widths.resize(m_columns.size());
  585. // 1. The min-content sizing-guess is the set of column width assignments where each column is assigned its min-content width.
  586. for (size_t i = 0; i < m_columns.size(); ++i) {
  587. auto& column = m_columns[i];
  588. // In fixed mode, the min-content width of percent-columns and auto-columns is considered to be zero:
  589. // https://www.w3.org/TR/css-tables-3/#width-distribution-in-fixed-mode
  590. if (use_fixed_mode_layout() && !column.is_constrained) {
  591. continue;
  592. }
  593. column.used_width = column.min_size;
  594. candidate_widths[i] = column.min_size;
  595. }
  596. // 2. The min-content-percentage sizing-guess is the set of column width assignments where:
  597. // - each percent-column is assigned the larger of:
  598. // - its intrinsic percentage width times the assignable width and
  599. // - its min-content width.
  600. // - all other columns are assigned their min-content width.
  601. for (size_t i = 0; i < m_columns.size(); ++i) {
  602. auto& column = m_columns[i];
  603. if (column.has_intrinsic_percentage) {
  604. candidate_widths[i] = max(column.min_size, CSSPixels::nearest_value_for(column.intrinsic_percentage / 100 * available_width));
  605. }
  606. }
  607. // 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
  608. // linear combination (with weights adding to 1) of the two consecutive sizing-guesses whose width sums bound the available width.
  609. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  610. assign_columns_width_linear_combination(candidate_widths, available_width);
  611. return;
  612. } else {
  613. commit_candidate_column_widths(candidate_widths);
  614. }
  615. // 3. The min-content-specified sizing-guess is the set of column width assignments where:
  616. // - each percent-column is assigned the larger of:
  617. // - its intrinsic percentage width times the assignable width and
  618. // - its min-content width
  619. // - any other column that is constrained is assigned its max-content width
  620. // - all other columns are assigned their min-content width.
  621. for (size_t i = 0; i < m_columns.size(); ++i) {
  622. auto& column = m_columns[i];
  623. if (column.is_constrained) {
  624. candidate_widths[i] = column.max_size;
  625. }
  626. }
  627. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  628. assign_columns_width_linear_combination(candidate_widths, available_width);
  629. return;
  630. } else {
  631. commit_candidate_column_widths(candidate_widths);
  632. }
  633. // 4. The max-content sizing-guess is the set of column width assignments where:
  634. // - each percent-column is assigned the larger of:
  635. // - its intrinsic percentage width times the assignable width and
  636. // - its min-content width
  637. // - all other columns are assigned their max-content width.
  638. for (size_t i = 0; i < m_columns.size(); ++i) {
  639. auto& column = m_columns[i];
  640. if (!column.has_intrinsic_percentage) {
  641. candidate_widths[i] = column.max_size;
  642. }
  643. }
  644. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  645. assign_columns_width_linear_combination(candidate_widths, available_width);
  646. return;
  647. } else {
  648. commit_candidate_column_widths(candidate_widths);
  649. }
  650. // Otherwise, the used widths of the columns are the result of starting from the max-content sizing-guess and distributing
  651. // the excess width to the columns of the table according to the rules for distributing excess width to columns (for used width).
  652. distribute_excess_width_to_columns(available_width);
  653. }
  654. void TableFormattingContext::distribute_excess_width_to_columns(CSSPixels available_width)
  655. {
  656. // Implements https://www.w3.org/TR/css-tables-3/#distributing-width-to-columns
  657. auto columns_total_used_width = compute_columns_total_used_width();
  658. if (columns_total_used_width >= available_width) {
  659. return;
  660. }
  661. auto excess_width = available_width - columns_total_used_width;
  662. if (excess_width == 0) {
  663. return;
  664. }
  665. if (use_fixed_mode_layout()) {
  666. distribute_excess_width_to_columns_fixed_mode(excess_width);
  667. return;
  668. }
  669. // 1. If there are non-constrained columns that have originating cells with intrinsic percentage width of 0% and with nonzero
  670. // max-content width (aka the columns allowed to grow by this rule), the distributed widths of the columns allowed to grow
  671. // by this rule are increased in proportion to max-content width so the total increase adds to the excess width.
  672. if (distribute_excess_width_proportionally_to_base_width(
  673. excess_width,
  674. [](auto const& column) {
  675. return !column.is_constrained && column.has_originating_cells && column.intrinsic_percentage == 0 && column.max_size > 0;
  676. },
  677. [](auto const& column) { return column.max_size; })) {
  678. excess_width = available_width - compute_columns_total_used_width();
  679. }
  680. if (excess_width == 0) {
  681. return;
  682. }
  683. // 2. Otherwise, if there are non-constrained columns that have originating cells with intrinsic percentage width of 0% (aka the columns
  684. // allowed to grow by this rule, which thanks to the previous rule must have zero max-content width), the distributed widths of the
  685. // columns allowed to grow by this rule are increased by equal amounts so the total increase adds to the excess width.
  686. if (distribute_excess_width_equally(excess_width,
  687. [](auto const& column) {
  688. return !column.is_constrained && column.has_originating_cells && column.intrinsic_percentage == 0;
  689. })) {
  690. excess_width = available_width - compute_columns_total_used_width();
  691. }
  692. if (excess_width == 0) {
  693. return;
  694. }
  695. // 3. Otherwise, if there are constrained columns with intrinsic percentage width of 0% and with nonzero max-content width
  696. // (aka the columns allowed to grow by this rule, which, due to other rules, must have originating cells), the distributed widths of the
  697. // columns allowed to grow by this rule are increased in proportion to max-content width so the total increase adds to the excess width.
  698. if (distribute_excess_width_proportionally_to_base_width(
  699. excess_width,
  700. [](auto const& column) {
  701. return column.is_constrained && column.intrinsic_percentage == 0 && column.max_size > 0;
  702. },
  703. [](auto const& column) { return column.max_size; })) {
  704. excess_width = available_width - compute_columns_total_used_width();
  705. }
  706. if (excess_width == 0) {
  707. return;
  708. }
  709. // 4. Otherwise, if there are columns with intrinsic percentage width greater than 0% (aka the columns allowed to grow by this rule,
  710. // which, due to other rules, must have originating cells), the distributed widths of the columns allowed to grow by this rule are
  711. // increased in proportion to intrinsic percentage width so the total increase adds to the excess width.
  712. if (distribute_excess_width_by_intrinsic_percentage(excess_width, [](auto const& column) {
  713. return column.intrinsic_percentage > 0;
  714. })) {
  715. excess_width = available_width - compute_columns_total_used_width();
  716. }
  717. if (excess_width == 0) {
  718. return;
  719. }
  720. // 5. Otherwise, if there is any such column, the distributed widths of all columns that have originating cells are increased by equal amounts
  721. // so the total increase adds to the excess width.
  722. if (distribute_excess_width_equally(
  723. excess_width,
  724. [](auto const& column) { return column.has_originating_cells; })) {
  725. excess_width = available_width - compute_columns_total_used_width();
  726. }
  727. if (excess_width == 0) {
  728. return;
  729. }
  730. // 6. Otherwise, the distributed widths of all columns are increased by equal amounts so the total increase adds to the excess width.
  731. distribute_excess_width_equally(excess_width, [](auto const&) { return true; });
  732. }
  733. void TableFormattingContext::distribute_excess_width_to_columns_fixed_mode(CSSPixels excess_width)
  734. {
  735. // Implements the fixed mode for https://www.w3.org/TR/css-tables-3/#distributing-width-to-columns.
  736. // If there are any columns with no width specified, the excess width is distributed in equally to such columns
  737. if (distribute_excess_width_equally(excess_width, [](auto const& column) { return !column.is_constrained && !column.has_intrinsic_percentage; })) {
  738. return;
  739. }
  740. // otherwise, if there are columns with non-zero length widths from the base assignment, the excess width is distributed proportionally to width among those columns
  741. if (distribute_excess_width_proportionally_to_base_width(
  742. excess_width, [](auto const& column) { return column.used_width > 0; }, [](auto const& column) { return column.used_width; })) {
  743. return;
  744. }
  745. // otherwise, if there are columns with non-zero percentage widths from the base assignment, the excess width is distributed proportionally to percentage width among those columns
  746. if (distribute_excess_width_by_intrinsic_percentage(excess_width, [](auto const& column) { return column.intrinsic_percentage > 0; })) {
  747. return;
  748. }
  749. // otherwise, the excess width is distributed equally to the zero-sized columns
  750. distribute_excess_width_equally(excess_width, [](auto const& column) { return column.used_width == 0; });
  751. }
  752. void TableFormattingContext::compute_table_height()
  753. {
  754. // First pass of row height calculation:
  755. for (auto& row : m_rows) {
  756. auto row_computed_height = row.box->computed_values().height();
  757. if (row_computed_height.is_length()) {
  758. auto height_of_containing_block = m_state.get(*row.box->containing_block()).content_height();
  759. auto row_used_height = row_computed_height.to_px(row.box, height_of_containing_block);
  760. row.base_height = max(row.base_height, row_used_height);
  761. }
  762. }
  763. // First pass of cells layout:
  764. for (auto& cell : m_cells) {
  765. auto& row = m_rows[cell.row_index];
  766. auto& cell_state = m_state.get_mutable(cell.box);
  767. CSSPixels span_width = 0;
  768. for (size_t i = 0; i < cell.column_span; ++i)
  769. span_width += m_columns[cell.column_index + i].used_width;
  770. auto width_of_containing_block = cell_state.containing_block_used_values()->content_width();
  771. auto height_of_containing_block = cell_state.containing_block_used_values()->content_height();
  772. cell_state.padding_top = cell.box->computed_values().padding().top().to_px(cell.box, width_of_containing_block);
  773. cell_state.padding_bottom = cell.box->computed_values().padding().bottom().to_px(cell.box, width_of_containing_block);
  774. cell_state.padding_left = cell.box->computed_values().padding().left().to_px(cell.box, width_of_containing_block);
  775. cell_state.padding_right = cell.box->computed_values().padding().right().to_px(cell.box, width_of_containing_block);
  776. if (cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Separate) {
  777. cell_state.border_top = cell.box->computed_values().border_top().width;
  778. cell_state.border_bottom = cell.box->computed_values().border_bottom().width;
  779. cell_state.border_left = cell.box->computed_values().border_left().width;
  780. cell_state.border_right = cell.box->computed_values().border_right().width;
  781. }
  782. auto cell_computed_height = cell.box->computed_values().height();
  783. if (cell_computed_height.is_length()) {
  784. auto cell_used_height = cell_computed_height.to_px(cell.box, height_of_containing_block);
  785. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  786. row.base_height = max(row.base_height, cell_used_height);
  787. }
  788. // Compute cell width as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  789. // 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:
  790. // - the widths/heights of all spanned visible columns/rows
  791. // - the horizontal/vertical border-spacing times the amount of spanned visible columns/rows minus one
  792. // FIXME: Account for visibility.
  793. cell_state.set_content_width(span_width - cell_state.border_box_left() - cell_state.border_box_right() + (cell.column_span - 1) * border_spacing_horizontal());
  794. if (auto independent_formatting_context = layout_inside(cell.box, m_layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  795. cell_state.set_content_height(independent_formatting_context->automatic_content_height());
  796. independent_formatting_context->parent_context_did_dimension_child_root_box();
  797. }
  798. cell.baseline = box_baseline(cell.box);
  799. // Implements https://www.w3.org/TR/css-tables-3/#computing-the-table-height
  800. // The minimum height of a row is the maximum of:
  801. // - the computed height (if definite, percentages being considered 0px) of its corresponding table-row (if nay)
  802. // - the computed height of each cell spanning the current row exclusively (if definite, percentages being treated as 0px), and
  803. // - the minimum height (ROWMIN) required by the cells spanning the row.
  804. // Note that we've already applied the first rule at the top of the method.
  805. if (cell.row_span == 1) {
  806. row.base_height = max(row.base_height, cell_state.border_box_height());
  807. }
  808. row.base_height = max(row.base_height, m_rows[cell.row_index].min_size);
  809. row.baseline = max(row.baseline, cell.baseline);
  810. }
  811. CSSPixels sum_rows_height = 0;
  812. for (auto& row : m_rows) {
  813. sum_rows_height += row.base_height;
  814. }
  815. m_table_height = sum_rows_height;
  816. if (!table_box().computed_values().height().is_auto()) {
  817. // If the table has a height property with a value other than auto, it is treated as a minimum height for the
  818. // table grid, and will eventually be distributed to the height of the rows if their collective minimum height
  819. // ends up smaller than this number.
  820. CSSPixels height_of_table_containing_block = m_state.get(*table_wrapper().containing_block()).content_height();
  821. auto specified_table_height = table_box().computed_values().height().to_px(table_box(), height_of_table_containing_block);
  822. auto const& table_state = m_state.get(table_box());
  823. m_table_height = max(m_table_height, specified_table_height - table_state.border_box_top() - table_state.border_box_bottom());
  824. }
  825. for (auto& row : m_rows) {
  826. // Reference size is the largest of
  827. // - its initial base height and
  828. // - its new base height (the one evaluated during the second layout pass, where percentages used in
  829. // rowgroups/rows/cells' specified heights were resolved according to the table height, instead of
  830. // being ignored as 0px).
  831. // Assign reference size to base size. Later, the reference size might change to a larger value during
  832. // the second pass of rows layout.
  833. row.reference_height = row.base_height;
  834. }
  835. // Second pass of rows height calculation:
  836. // At this point, percentage row height can be resolved because the final table height is calculated.
  837. for (auto& row : m_rows) {
  838. auto row_computed_height = row.box->computed_values().height();
  839. if (row_computed_height.is_percentage()) {
  840. auto row_used_height = row_computed_height.to_px(row.box, m_table_height);
  841. row.reference_height = max(row.reference_height, row_used_height);
  842. } else {
  843. continue;
  844. }
  845. }
  846. // Second pass cells layout:
  847. // At this point, percentage cell height can be resolved because the final table height is calculated.
  848. for (auto& cell : m_cells) {
  849. auto& row = m_rows[cell.row_index];
  850. auto& cell_state = m_state.get_mutable(cell.box);
  851. CSSPixels span_width = 0;
  852. for (size_t i = 0; i < cell.column_span; ++i)
  853. span_width += m_columns[cell.column_index + i].used_width;
  854. auto cell_computed_height = cell.box->computed_values().height();
  855. if (cell_computed_height.is_percentage()) {
  856. auto cell_used_height = cell_computed_height.to_px(cell.box, m_table_height);
  857. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  858. row.reference_height = max(row.reference_height, cell_used_height);
  859. } else {
  860. continue;
  861. }
  862. cell_state.set_content_width(span_width - cell_state.border_box_left() - cell_state.border_box_right() + (cell.column_span - 1) * border_spacing_horizontal());
  863. if (auto independent_formatting_context = layout_inside(cell.box, m_layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  864. independent_formatting_context->parent_context_did_dimension_child_root_box();
  865. }
  866. cell.baseline = box_baseline(cell.box);
  867. row.reference_height = max(row.reference_height, cell_state.border_box_height());
  868. row.baseline = max(row.baseline, cell.baseline);
  869. }
  870. }
  871. void TableFormattingContext::distribute_height_to_rows()
  872. {
  873. CSSPixels sum_reference_height = 0;
  874. for (auto& row : m_rows) {
  875. sum_reference_height += row.reference_height;
  876. }
  877. if (sum_reference_height == 0)
  878. return;
  879. Vector<Row&> rows_with_auto_height;
  880. for (auto& row : m_rows) {
  881. if (row.box->computed_values().height().is_auto()) {
  882. rows_with_auto_height.append(row);
  883. }
  884. }
  885. if (m_table_height <= sum_reference_height) {
  886. // If the table height is equal or smaller than sum of reference sizes, the final height assigned to each row
  887. // will be the weighted mean of the base and the reference size that yields the correct total height.
  888. for (auto& row : m_rows) {
  889. auto weight = row.reference_height / static_cast<double>(sum_reference_height);
  890. auto final_height = m_table_height * weight;
  891. row.final_height = CSSPixels::nearest_value_for(final_height);
  892. }
  893. } else if (rows_with_auto_height.size() > 0) {
  894. // Else, if the table owns any “auto-height” row (a row whose size is only determined by its content size and
  895. // none of the specified heights), each non-auto-height row receives its reference height and auto-height rows
  896. // receive their reference size plus some increment which is equal to the height missing to amount to the
  897. // specified table height divided by the amount of such rows.
  898. for (auto& row : m_rows) {
  899. row.final_height = row.reference_height;
  900. }
  901. auto auto_height_rows_increment = (m_table_height - sum_reference_height) / rows_with_auto_height.size();
  902. for (auto& row : rows_with_auto_height) {
  903. row.final_height += auto_height_rows_increment;
  904. }
  905. } else {
  906. // Else, all rows receive their reference size plus some increment which is equal to the height missing to
  907. // amount to the specified table height divided by the amount of rows.
  908. auto increment = (m_table_height - sum_reference_height) / m_rows.size();
  909. for (auto& row : m_rows) {
  910. row.final_height = row.reference_height + increment;
  911. }
  912. }
  913. // Add undistributable space due to border spacing: https://www.w3.org/TR/css-tables-3/#computing-undistributable-space.
  914. m_table_height += (m_rows.size() + 1) * border_spacing_vertical();
  915. }
  916. void TableFormattingContext::position_row_boxes()
  917. {
  918. auto const& table_state = m_state.get(table_box());
  919. CSSPixels row_top_offset = table_state.offset.y() + border_spacing_vertical();
  920. CSSPixels row_left_offset = table_state.border_left + table_state.padding_left + border_spacing_horizontal();
  921. for (size_t y = 0; y < m_rows.size(); y++) {
  922. auto& row = m_rows[y];
  923. auto& row_state = m_state.get_mutable(row.box);
  924. CSSPixels row_width = 0;
  925. for (auto& column : m_columns) {
  926. row_width += column.used_width;
  927. }
  928. if (m_columns.size() >= 2)
  929. row_width += (m_columns.size() - 1) * border_spacing_horizontal();
  930. row_state.set_content_height(row.final_height);
  931. row_state.set_content_width(row_width);
  932. row_state.set_content_x(row_left_offset);
  933. row_state.set_content_y(row_top_offset);
  934. row_top_offset += row_state.content_height() + border_spacing_vertical();
  935. }
  936. CSSPixels row_group_top_offset = table_state.offset.y() + border_spacing_vertical();
  937. CSSPixels row_group_left_offset = table_state.border_left + table_state.padding_left + border_spacing_horizontal();
  938. TableGrid::for_each_child_box_matching(table_box(), TableGrid::is_table_row_group, [&](auto& row_group_box) {
  939. CSSPixels row_group_height = 0;
  940. CSSPixels row_group_width = 0;
  941. auto& row_group_box_state = m_state.get_mutable(row_group_box);
  942. row_group_box_state.set_content_x(row_group_left_offset);
  943. row_group_box_state.set_content_y(row_group_top_offset);
  944. int num_rows = 0;
  945. TableGrid::for_each_child_box_matching(row_group_box, TableGrid::is_table_row, [&](auto& row) {
  946. auto const& row_state = m_state.get(row);
  947. row_group_height += row_state.border_box_height();
  948. row_group_width = max(row_group_width, row_state.border_box_width());
  949. num_rows += 1;
  950. });
  951. if (num_rows >= 2)
  952. row_group_height += (num_rows - 1) * border_spacing_vertical();
  953. row_group_box_state.set_content_height(row_group_height);
  954. row_group_box_state.set_content_width(row_group_width);
  955. row_group_top_offset += row_group_height + (num_rows > 0 ? border_spacing_vertical() : 0);
  956. });
  957. auto total_content_height = max(row_top_offset, row_group_top_offset) - table_state.offset.y() - table_state.padding_top;
  958. m_table_height = max(total_content_height, m_table_height);
  959. }
  960. void TableFormattingContext::position_cell_boxes()
  961. {
  962. CSSPixels left_column_offset = 0;
  963. for (auto& column : m_columns) {
  964. column.left_offset = left_column_offset;
  965. left_column_offset += column.used_width;
  966. }
  967. for (auto& cell : m_cells) {
  968. auto& cell_state = m_state.get_mutable(cell.box);
  969. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  970. auto const row_content_height = compute_row_content_height(cell);
  971. auto const& vertical_align = cell.box->computed_values().vertical_align();
  972. // The following image shows various alignment lines of a row:
  973. // https://www.w3.org/TR/css-tables-3/images/cell-align-explainer.png
  974. // https://drafts.csswg.org/css2/#height-layout
  975. // In the context of tables, values for vertical-align have the following meanings:
  976. if (vertical_align.has<CSS::VerticalAlign>()) {
  977. switch (vertical_align.get<CSS::VerticalAlign>()) {
  978. // The center of the cell is aligned with the center of the rows it spans.
  979. case CSS::VerticalAlign::Middle: {
  980. auto const height_diff = row_content_height - cell_state.border_box_height();
  981. cell_state.padding_top += height_diff / 2;
  982. cell_state.padding_bottom += height_diff / 2;
  983. break;
  984. }
  985. // The top of the cell box is aligned with the top of the first row it spans.
  986. case CSS::VerticalAlign::Top: {
  987. cell_state.padding_bottom += row_content_height - cell_state.border_box_height();
  988. break;
  989. }
  990. // The bottom of the cell box is aligned with the bottom of the last row it spans.
  991. case CSS::VerticalAlign::Bottom: {
  992. cell_state.padding_top += row_content_height - cell_state.border_box_height();
  993. break;
  994. }
  995. // These values do not apply to cells; the cell is aligned at the baseline instead.
  996. case CSS::VerticalAlign::Sub:
  997. case CSS::VerticalAlign::Super:
  998. case CSS::VerticalAlign::TextBottom:
  999. case CSS::VerticalAlign::TextTop:
  1000. // The baseline of the cell is put at the same height as the baseline of the first of the rows it spans.
  1001. case CSS::VerticalAlign::Baseline: {
  1002. cell_state.padding_top += m_rows[cell.row_index].baseline - cell.baseline;
  1003. cell_state.padding_bottom += row_content_height - cell_state.border_box_height();
  1004. break;
  1005. }
  1006. default:
  1007. VERIFY_NOT_REACHED();
  1008. }
  1009. }
  1010. // Compute cell position as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  1011. // left/top location is the sum of:
  1012. // - for top: the height reserved for top captions (including margins), if any
  1013. // - the padding-left/padding-top and border-left-width/border-top-width of the table
  1014. // FIXME: Account for visibility.
  1015. cell_state.offset = row_state.offset.translated(
  1016. cell_state.border_box_left() + m_columns[cell.column_index].left_offset + cell.column_index * border_spacing_horizontal(),
  1017. cell_state.border_box_top());
  1018. }
  1019. }
  1020. bool TableFormattingContext::use_fixed_mode_layout() const
  1021. {
  1022. // Implements https://www.w3.org/TR/css-tables-3/#in-fixed-mode.
  1023. // A table-root is said to be laid out in fixed mode whenever the computed value of the table-layout property is equal to fixed, and the
  1024. // specified width of the table root is either a <length-percentage>, min-content or fit-content. When the specified width is not one of
  1025. // those values, or if the computed value of the table-layout property is auto, then the table-root is said to be laid out in auto mode.
  1026. auto const& width = table_box().computed_values().width();
  1027. return table_box().computed_values().table_layout() == CSS::TableLayout::Fixed && (width.is_length() || width.is_percentage() || width.is_min_content() || width.is_fit_content());
  1028. }
  1029. bool TableFormattingContext::border_is_less_specific(const CSS::BorderData& a, const CSS::BorderData& b)
  1030. {
  1031. // Implements criteria for steps 1, 2 and 3 of border conflict resolution algorithm, as described in
  1032. // https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution.
  1033. static HashMap<CSS::LineStyle, unsigned> const line_style_score = {
  1034. { CSS::LineStyle::Inset, 0 },
  1035. { CSS::LineStyle::Groove, 1 },
  1036. { CSS::LineStyle::Outset, 2 },
  1037. { CSS::LineStyle::Ridge, 3 },
  1038. { CSS::LineStyle::Dotted, 4 },
  1039. { CSS::LineStyle::Dashed, 5 },
  1040. { CSS::LineStyle::Solid, 6 },
  1041. { CSS::LineStyle::Double, 7 },
  1042. };
  1043. // 1. Borders with the 'border-style' of 'hidden' take precedence over all other conflicting borders. Any border with this
  1044. // value suppresses all borders at this location.
  1045. if (a.line_style == CSS::LineStyle::Hidden) {
  1046. return false;
  1047. }
  1048. if (b.line_style == CSS::LineStyle::Hidden) {
  1049. return true;
  1050. }
  1051. // 2. Borders with a style of 'none' have the lowest priority. Only if the border properties of all the elements meeting
  1052. // at this edge are 'none' will the border be omitted (but note that 'none' is the default value for the border style.)
  1053. if (a.line_style == CSS::LineStyle::None) {
  1054. return true;
  1055. }
  1056. if (b.line_style == CSS::LineStyle::None) {
  1057. return false;
  1058. }
  1059. // 3. If none of the styles are 'hidden' and at least one of them is not 'none', then narrow borders are discarded in favor
  1060. // of wider ones. If several have the same 'border-width' then styles are preferred in this order: 'double', 'solid',
  1061. // 'dashed', 'dotted', 'ridge', 'outset', 'groove', and the lowest: 'inset'.
  1062. if (a.width > b.width) {
  1063. return false;
  1064. } else if (a.width < b.width) {
  1065. return true;
  1066. }
  1067. if (*line_style_score.get(a.line_style) > *line_style_score.get(b.line_style)) {
  1068. return false;
  1069. } else if (*line_style_score.get(a.line_style) < *line_style_score.get(b.line_style)) {
  1070. return true;
  1071. }
  1072. return false;
  1073. }
  1074. const CSS::BorderData& TableFormattingContext::border_data_conflicting_edge(TableFormattingContext::ConflictingEdge const& conflicting_edge)
  1075. {
  1076. auto const& style = conflicting_edge.element->computed_values();
  1077. switch (conflicting_edge.side) {
  1078. case ConflictingSide::Top: {
  1079. return style.border_top();
  1080. }
  1081. case ConflictingSide::Bottom: {
  1082. return style.border_bottom();
  1083. }
  1084. case ConflictingSide::Left: {
  1085. return style.border_left();
  1086. }
  1087. case ConflictingSide::Right: {
  1088. return style.border_right();
  1089. }
  1090. default: {
  1091. VERIFY_NOT_REACHED();
  1092. }
  1093. }
  1094. }
  1095. Painting::PaintableBox::BorderDataWithElementKind const TableFormattingContext::border_data_with_element_kind_from_conflicting_edge(ConflictingEdge const& conflicting_edge)
  1096. {
  1097. auto const& border_data = border_data_conflicting_edge(conflicting_edge);
  1098. return { .border_data = border_data, .element_kind = conflicting_edge.element_kind };
  1099. }
  1100. TableFormattingContext::ConflictingEdge const& TableFormattingContext::winning_conflicting_edge(TableFormattingContext::ConflictingEdge const& a, TableFormattingContext::ConflictingEdge const& b)
  1101. {
  1102. auto a_border_data = border_data_conflicting_edge(a);
  1103. auto b_border_data = border_data_conflicting_edge(b);
  1104. // First check if step 4 of border conflict resolution applies, as described in https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution.
  1105. if (a_border_data.line_style == b_border_data.line_style && a_border_data.width == b_border_data.width) {
  1106. // 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
  1107. // row group, column, column group and, lastly, table. When two elements of the same type conflict, then the one
  1108. // further to the left (if the table's 'direction' is 'ltr'; right, if it is 'rtl') and further to the top wins.
  1109. if (static_cast<unsigned>(a.element_kind) < static_cast<unsigned>(b.element_kind)) {
  1110. return a;
  1111. } else if (static_cast<unsigned>(a.element_kind) > static_cast<unsigned>(b.element_kind)) {
  1112. return b;
  1113. }
  1114. // Here the element kind is the same, thus the coordinates are either both set or not set.
  1115. VERIFY(a.column.has_value() == b.column.has_value());
  1116. VERIFY(a.row.has_value() == b.row.has_value());
  1117. if (a.column.has_value()) {
  1118. if (a.column.value() < b.column.value()) {
  1119. return a;
  1120. } else if (a.column.value() > b.column.value()) {
  1121. return b;
  1122. }
  1123. }
  1124. if (a.row.has_value()) {
  1125. if (a.row.value() < b.row.value()) {
  1126. return a;
  1127. } else if (a.row.value() > b.row.value()) {
  1128. return b;
  1129. }
  1130. }
  1131. return a;
  1132. }
  1133. // Apply steps 1, 2 and 3 of the border conflict resolution algorithm.
  1134. return border_is_less_specific(a_border_data, b_border_data) ? b : a;
  1135. }
  1136. void TableFormattingContext::border_conflict_resolution()
  1137. {
  1138. // Implements border conflict resolution, as described in https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution.
  1139. BorderConflictFinder finder(this);
  1140. for (auto& cell : m_cells) {
  1141. auto& cell_state = m_state.get_mutable(cell.box);
  1142. cell_state.set_table_cell_coordinates(
  1143. Painting::PaintableBox::TableCellCoordinates {
  1144. .row_index = cell.row_index,
  1145. .column_index = cell.column_index,
  1146. .row_span = cell.row_span,
  1147. .column_span = cell.column_span });
  1148. if (cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Separate) {
  1149. continue;
  1150. }
  1151. Painting::PaintableBox::BordersDataWithElementKind override_borders_data;
  1152. ConflictingEdge winning_edge_left {
  1153. .element = cell.box,
  1154. .element_kind = Painting::PaintableBox::ConflictingElementKind::Cell,
  1155. .side = ConflictingSide::Left,
  1156. .row = cell.row_index,
  1157. .column = cell.column_index,
  1158. };
  1159. for (auto const& conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Left)) {
  1160. winning_edge_left = winning_conflicting_edge(winning_edge_left, conflicting_edge);
  1161. }
  1162. override_borders_data.left = border_data_with_element_kind_from_conflicting_edge(winning_edge_left);
  1163. cell_state.border_left = override_borders_data.left.border_data.width;
  1164. ConflictingEdge winning_edge_right {
  1165. .element = cell.box,
  1166. .element_kind = Painting::PaintableBox::ConflictingElementKind::Cell,
  1167. .side = ConflictingSide::Right,
  1168. .row = cell.row_index,
  1169. .column = cell.column_index,
  1170. };
  1171. for (auto const& conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Right)) {
  1172. winning_edge_right = winning_conflicting_edge(winning_edge_right, conflicting_edge);
  1173. }
  1174. override_borders_data.right = border_data_with_element_kind_from_conflicting_edge(winning_edge_right);
  1175. cell_state.border_right = override_borders_data.right.border_data.width;
  1176. ConflictingEdge winning_edge_top {
  1177. .element = cell.box,
  1178. .element_kind = Painting::PaintableBox::ConflictingElementKind::Cell,
  1179. .side = ConflictingSide::Top,
  1180. .row = cell.row_index,
  1181. .column = cell.column_index,
  1182. };
  1183. for (auto const& conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Top)) {
  1184. winning_edge_top = winning_conflicting_edge(winning_edge_top, conflicting_edge);
  1185. }
  1186. override_borders_data.top = border_data_with_element_kind_from_conflicting_edge(winning_edge_top);
  1187. cell_state.border_top = override_borders_data.top.border_data.width;
  1188. ConflictingEdge winning_edge_bottom {
  1189. .element = cell.box,
  1190. .element_kind = Painting::PaintableBox::ConflictingElementKind::Cell,
  1191. .side = ConflictingSide::Bottom,
  1192. .row = cell.row_index,
  1193. .column = cell.column_index,
  1194. };
  1195. for (auto const& conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Bottom)) {
  1196. winning_edge_bottom = winning_conflicting_edge(winning_edge_bottom, conflicting_edge);
  1197. }
  1198. override_borders_data.bottom = border_data_with_element_kind_from_conflicting_edge(winning_edge_bottom);
  1199. cell_state.border_bottom = override_borders_data.bottom.border_data.width;
  1200. cell_state.set_override_borders_data(override_borders_data);
  1201. }
  1202. }
  1203. CSSPixels TableFormattingContext::compute_row_content_height(Cell const& cell) const
  1204. {
  1205. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  1206. if (cell.row_span == 1) {
  1207. return row_state.content_height();
  1208. }
  1209. // The height of a cell is the sum of all spanned rows, as described in
  1210. // https://www.w3.org/TR/css-tables-3/#bounding-box-assignment
  1211. // When the row span is greater than 1, the borders of inner rows within the span have to be
  1212. // included in the content height of the spanning cell. First top and final bottom borders are
  1213. // excluded to be consistent with the handling of row span 1 case above, which uses the content
  1214. // height (no top and bottom borders) of the row.
  1215. CSSPixels span_height = 0;
  1216. for (size_t i = 0; i < cell.row_span; ++i) {
  1217. auto const& row_state = m_state.get(m_rows[cell.row_index + i].box);
  1218. if (i == 0) {
  1219. span_height += row_state.content_height() + row_state.border_box_bottom();
  1220. } else if (i == cell.row_span - 1) {
  1221. span_height += row_state.border_box_top() + row_state.content_height();
  1222. } else {
  1223. span_height += row_state.border_box_height();
  1224. }
  1225. }
  1226. // Compute cell height as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  1227. // width/height is the sum of:
  1228. // - the widths/heights of all spanned visible columns/rows
  1229. // - the horizontal/vertical border-spacing times the amount of spanned visible columns/rows minus one
  1230. // FIXME: Account for visibility.
  1231. span_height += (cell.row_span - 1) * border_spacing_vertical();
  1232. return span_height;
  1233. }
  1234. TableFormattingContext::BorderConflictFinder::BorderConflictFinder(TableFormattingContext const* context)
  1235. : m_context(context)
  1236. {
  1237. collect_conflicting_col_elements();
  1238. collect_conflicting_row_group_elements();
  1239. }
  1240. void TableFormattingContext::BorderConflictFinder::collect_conflicting_col_elements()
  1241. {
  1242. m_col_elements_by_index.resize(m_context->m_columns.size());
  1243. for (auto* child = m_context->table_box().first_child(); child; child = child->next_sibling()) {
  1244. if (!child->display().is_table_column_group()) {
  1245. continue;
  1246. }
  1247. size_t column_index = 0;
  1248. for (auto* child_of_column_group = child->first_child(); child_of_column_group; child_of_column_group = child_of_column_group->next_sibling()) {
  1249. VERIFY(child_of_column_group->display().is_table_column());
  1250. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*child_of_column_group->dom_node());
  1251. unsigned span = col_node.get_attribute_value(HTML::AttributeNames::span).to_number<unsigned>().value_or(1);
  1252. m_col_elements_by_index.resize(column_index + span);
  1253. for (size_t i = column_index; i < column_index + span; ++i) {
  1254. m_col_elements_by_index[i] = child_of_column_group;
  1255. }
  1256. column_index += span;
  1257. }
  1258. }
  1259. }
  1260. void TableFormattingContext::BorderConflictFinder::collect_conflicting_row_group_elements()
  1261. {
  1262. m_row_group_elements_by_index.resize(m_context->m_rows.size());
  1263. size_t current_row_index = 0;
  1264. TableGrid::for_each_child_box_matching(m_context->table_box(), TableGrid::is_table_row_group, [&](auto& row_group_box) {
  1265. auto start_row_index = current_row_index;
  1266. size_t row_count = 0;
  1267. TableGrid::for_each_child_box_matching(row_group_box, TableGrid::is_table_row, [&](auto&) {
  1268. ++row_count;
  1269. });
  1270. TableGrid::for_each_child_box_matching(row_group_box, TableGrid::is_table_row, [&](auto&) {
  1271. m_row_group_elements_by_index[current_row_index] = RowGroupInfo {
  1272. .row_group = &row_group_box, .start_index = start_row_index, .row_count = row_count
  1273. };
  1274. ++current_row_index;
  1275. return IterationDecision::Continue;
  1276. });
  1277. });
  1278. }
  1279. void TableFormattingContext::BorderConflictFinder::collect_cell_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1280. {
  1281. // Right edge of the cell to the left.
  1282. if (cell.column_index >= cell.column_span && edge == ConflictingSide::Left) {
  1283. auto left_cell_column_index = cell.column_index - cell.column_span;
  1284. auto maybe_cell_to_left = m_context->m_cells_by_coordinate[cell.row_index][left_cell_column_index];
  1285. if (maybe_cell_to_left.has_value()) {
  1286. result.append({ maybe_cell_to_left->box, Painting::PaintableBox::ConflictingElementKind::Cell, ConflictingSide::Right, cell.row_index, left_cell_column_index });
  1287. }
  1288. }
  1289. // Left edge of the cell to the right.
  1290. if (cell.column_index + cell.column_span < m_context->m_cells_by_coordinate[cell.row_index].size() && edge == ConflictingSide::Right) {
  1291. auto right_cell_column_index = cell.column_index + cell.column_span;
  1292. auto maybe_cell_to_right = m_context->m_cells_by_coordinate[cell.row_index][right_cell_column_index];
  1293. if (maybe_cell_to_right.has_value()) {
  1294. result.append({ maybe_cell_to_right->box, Painting::PaintableBox::ConflictingElementKind::Cell, ConflictingSide::Left, cell.row_index, right_cell_column_index });
  1295. }
  1296. }
  1297. // Bottom edge of the cell above.
  1298. if (cell.row_index >= cell.row_span && edge == ConflictingSide::Top) {
  1299. auto above_cell_row_index = cell.row_index - cell.row_span;
  1300. auto maybe_cell_above = m_context->m_cells_by_coordinate[above_cell_row_index][cell.column_index];
  1301. if (maybe_cell_above.has_value()) {
  1302. result.append({ maybe_cell_above->box, Painting::PaintableBox::ConflictingElementKind::Cell, ConflictingSide::Bottom, above_cell_row_index, cell.column_index });
  1303. }
  1304. }
  1305. // Top edge of the cell below.
  1306. if (cell.row_index + cell.row_span < m_context->m_cells_by_coordinate.size() && edge == ConflictingSide::Bottom) {
  1307. auto below_cell_row_index = cell.row_index + cell.row_span;
  1308. auto maybe_cell_below = m_context->m_cells_by_coordinate[below_cell_row_index][cell.column_index];
  1309. if (maybe_cell_below.has_value()) {
  1310. result.append({ maybe_cell_below->box, Painting::PaintableBox::ConflictingElementKind::Cell, ConflictingSide::Top, below_cell_row_index, cell.column_index });
  1311. }
  1312. }
  1313. }
  1314. void TableFormattingContext::BorderConflictFinder::collect_row_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1315. {
  1316. // Top edge of the row.
  1317. if (edge == ConflictingSide::Top) {
  1318. result.append({ m_context->m_rows[cell.row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Top, cell.row_index, {} });
  1319. }
  1320. // Bottom edge of the row.
  1321. if (edge == ConflictingSide::Bottom) {
  1322. result.append({ m_context->m_rows[cell.row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Bottom, cell.row_index, {} });
  1323. }
  1324. // Bottom edge of the row above.
  1325. if (cell.row_index >= cell.row_span && edge == ConflictingSide::Top) {
  1326. auto above_row_index = cell.row_index - cell.row_span;
  1327. result.append({ m_context->m_rows[above_row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Bottom, above_row_index, {} });
  1328. }
  1329. // Top edge of the row below.
  1330. if (cell.row_index + cell.row_span < m_context->m_rows.size() && edge == ConflictingSide::Bottom) {
  1331. auto below_row_index = cell.row_index + cell.row_span;
  1332. result.append({ m_context->m_rows[below_row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Top, below_row_index, {} });
  1333. }
  1334. }
  1335. void TableFormattingContext::BorderConflictFinder::collect_row_group_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1336. {
  1337. auto const& maybe_row_group = m_row_group_elements_by_index[cell.row_index];
  1338. // Top edge of the row group.
  1339. if (maybe_row_group.has_value() && cell.row_index == maybe_row_group->start_index && edge == ConflictingSide::Top) {
  1340. result.append({ maybe_row_group->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Top, maybe_row_group->start_index, {} });
  1341. }
  1342. // Bottom edge of the row group above.
  1343. if (cell.row_index >= cell.row_span) {
  1344. auto const& maybe_row_group_above = m_row_group_elements_by_index[cell.row_index - cell.row_span];
  1345. 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) {
  1346. result.append({ maybe_row_group_above->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Bottom, maybe_row_group_above->start_index, {} });
  1347. }
  1348. }
  1349. // Bottom edge of the row group.
  1350. if (maybe_row_group.has_value() && cell.row_index == maybe_row_group->start_index + maybe_row_group->row_count - 1 && edge == ConflictingSide::Bottom) {
  1351. result.append({ maybe_row_group->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Bottom, maybe_row_group->start_index, {} });
  1352. }
  1353. // Top edge of the row group below.
  1354. if (cell.row_index + cell.row_span < m_row_group_elements_by_index.size()) {
  1355. auto const& maybe_row_group_below = m_row_group_elements_by_index[cell.row_index + cell.row_span];
  1356. if (maybe_row_group_below.has_value() && cell.row_index + cell.row_span == maybe_row_group_below->start_index && edge == ConflictingSide::Bottom) {
  1357. result.append({ maybe_row_group_below->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Top, maybe_row_group_below->start_index, {} });
  1358. }
  1359. }
  1360. }
  1361. void TableFormattingContext::BorderConflictFinder::collect_column_group_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1362. {
  1363. // Left edge of the column group.
  1364. if (auto col_element = get_col_element(cell.column_index); col_element && edge == ConflictingSide::Left) {
  1365. result.append({ col_element, Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Left, {}, cell.column_index });
  1366. }
  1367. // Right edge of the column group to the left.
  1368. if (auto col_element = get_col_element(cell.column_index - cell.column_span); col_element && cell.column_index >= cell.column_span && edge == ConflictingSide::Left) {
  1369. result.append({ col_element, Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Right, {}, cell.column_index - cell.column_span });
  1370. }
  1371. // Right edge of the column group.
  1372. if (auto col_element = get_col_element(cell.column_index); col_element && edge == ConflictingSide::Right) {
  1373. result.append({ col_element, Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Right, {}, cell.column_index });
  1374. }
  1375. // Left edge of the column group to the right.
  1376. if (auto col_element = get_col_element(cell.column_index - cell.column_span); col_element && edge == ConflictingSide::Right) {
  1377. result.append({ col_element, Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Left, {}, cell.column_index + cell.column_span });
  1378. }
  1379. }
  1380. void TableFormattingContext::BorderConflictFinder::collect_table_box_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1381. {
  1382. // Top edge from column group or table. Left and right edges of the column group are handled in collect_column_group_conflicting_edges.
  1383. if (cell.row_index == 0 && edge == ConflictingSide::Top) {
  1384. if (auto col_element = get_col_element(cell.column_index); col_element) {
  1385. result.append({ col_element, Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Top, {}, cell.column_index });
  1386. }
  1387. result.append({ &m_context->table_box(), Painting::PaintableBox::ConflictingElementKind::Table, ConflictingSide::Top, {}, {} });
  1388. }
  1389. // Bottom edge from column group or table. Left and right edges of the column group are handled in collect_column_group_conflicting_edges.
  1390. if (cell.row_index + cell.row_span == m_context->m_rows.size() && edge == ConflictingSide::Bottom) {
  1391. if (auto col_element = get_col_element(cell.column_index); col_element) {
  1392. result.append({ col_element, Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Bottom, {}, cell.column_index });
  1393. }
  1394. result.append({ &m_context->table_box(), Painting::PaintableBox::ConflictingElementKind::Table, ConflictingSide::Bottom, {}, {} });
  1395. }
  1396. // Left edge from row group or table. Top and bottom edges of the row group are handled in collect_row_group_conflicting_edges.
  1397. if (cell.column_index == 0 && edge == ConflictingSide::Left) {
  1398. result.append({ m_context->m_rows[cell.row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Left, cell.row_index, {} });
  1399. if (m_row_group_elements_by_index[cell.row_index].has_value()) {
  1400. result.append({ m_row_group_elements_by_index[cell.row_index]->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Left, cell.row_index, {} });
  1401. }
  1402. result.append({ &m_context->table_box(), Painting::PaintableBox::ConflictingElementKind::Table, ConflictingSide::Left, {}, {} });
  1403. }
  1404. // Right edge from row group or table. Top and bottom edges of the row group are handled in collect_row_group_conflicting_edges.
  1405. if (cell.column_index + cell.column_span == m_context->m_columns.size() && edge == ConflictingSide::Right) {
  1406. result.append({ m_context->m_rows[cell.row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Right, cell.row_index, {} });
  1407. if (m_row_group_elements_by_index[cell.row_index].has_value()) {
  1408. result.append({ m_row_group_elements_by_index[cell.row_index]->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Right, cell.row_index, {} });
  1409. }
  1410. result.append({ &m_context->table_box(), Painting::PaintableBox::ConflictingElementKind::Table, ConflictingSide::Right, {}, {} });
  1411. }
  1412. }
  1413. Vector<TableFormattingContext::ConflictingEdge> TableFormattingContext::BorderConflictFinder::conflicting_edges(
  1414. Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1415. {
  1416. Vector<ConflictingEdge> result = {};
  1417. collect_cell_conflicting_edges(result, cell, edge);
  1418. collect_row_conflicting_edges(result, cell, edge);
  1419. collect_row_group_conflicting_edges(result, cell, edge);
  1420. collect_column_group_conflicting_edges(result, cell, edge);
  1421. collect_table_box_conflicting_edges(result, cell, edge);
  1422. return result;
  1423. }
  1424. void TableFormattingContext::finish_grid_initialization(TableGrid const& table_grid)
  1425. {
  1426. m_columns.resize(table_grid.column_count());
  1427. m_cells_by_coordinate.resize(m_rows.size());
  1428. for (auto& position_to_cell_row : m_cells_by_coordinate) {
  1429. position_to_cell_row.resize(table_grid.column_count());
  1430. }
  1431. for (auto const& cell : m_cells) {
  1432. m_cells_by_coordinate[cell.row_index][cell.column_index] = cell;
  1433. m_columns[cell.column_index].has_originating_cells = true;
  1434. }
  1435. }
  1436. void TableFormattingContext::run_until_width_calculation(AvailableSpace const& available_space)
  1437. {
  1438. m_available_space = available_space;
  1439. // Determine the number of rows/columns the table requires.
  1440. finish_grid_initialization(TableGrid::calculate_row_column_grid(context_box(), m_cells, m_rows));
  1441. border_conflict_resolution();
  1442. // Compute the minimum width of each column.
  1443. compute_cell_measures();
  1444. compute_outer_content_sizes();
  1445. compute_table_measures<Column>();
  1446. // https://www.w3.org/TR/css-tables-3/#row-layout
  1447. // Since during row layout the specified heights of cells in the row were ignored and cells that were spanning more than one rows
  1448. // have not been sized correctly, their height will need to be eventually distributed to the set of rows they spanned. This is done
  1449. // by running the same algorithm as the column measurement, with the span=1 value being initialized (for min-content) with the largest
  1450. // of the resulting height of the previous row layout, the height specified on the corresponding table-row (if any), and the largest
  1451. // height specified on cells that span this row only (the algorithm starts by considering cells of span 2 on top of that assignment).
  1452. compute_table_measures<Row>();
  1453. // Compute the width of the table.
  1454. compute_table_width();
  1455. }
  1456. void TableFormattingContext::parent_context_did_dimension_child_root_box()
  1457. {
  1458. if (m_layout_mode != LayoutMode::Normal)
  1459. return;
  1460. context_box().for_each_in_subtree_of_type<Box const>([&](Layout::Box const& box) {
  1461. if (box.is_absolutely_positioned()) {
  1462. // FIXME: calculate_static_position_rect() is not aware of how to correctly calculate static position for
  1463. // a box nested inside a table, but we need to set some value, so layout_absolutely_positioned_element()
  1464. // won't crash trying to access it.
  1465. m_state.get_mutable(box).set_static_position_rect(calculate_static_position_rect(box));
  1466. }
  1467. if (formatting_context_type_created_by_box(box).has_value()) {
  1468. return TraversalDecision::SkipChildrenAndContinue;
  1469. }
  1470. return TraversalDecision::Continue;
  1471. });
  1472. for (auto& child : context_box().contained_abspos_children()) {
  1473. auto& box = verify_cast<Box>(*child);
  1474. auto& cb_state = m_state.get(*box.containing_block());
  1475. auto available_width = AvailableSize::make_definite(cb_state.content_width() + cb_state.padding_left + cb_state.padding_right);
  1476. auto available_height = AvailableSize::make_definite(cb_state.content_height() + cb_state.padding_top + cb_state.padding_bottom);
  1477. layout_absolutely_positioned_element(box, AvailableSpace(available_width, available_height));
  1478. }
  1479. }
  1480. void TableFormattingContext::run(AvailableSpace const& available_space)
  1481. {
  1482. m_available_space = available_space;
  1483. auto total_captions_height = run_caption_layout(CSS::CaptionSide::Top);
  1484. run_until_width_calculation(available_space);
  1485. if (available_space.width.is_intrinsic_sizing_constraint() && !available_space.height.is_intrinsic_sizing_constraint()) {
  1486. return;
  1487. }
  1488. // Distribute the width of the table among columns.
  1489. distribute_width_to_columns();
  1490. compute_table_height();
  1491. distribute_height_to_rows();
  1492. position_row_boxes();
  1493. position_cell_boxes();
  1494. m_state.get_mutable(table_box()).set_content_height(m_table_height);
  1495. total_captions_height += run_caption_layout(CSS::CaptionSide::Bottom);
  1496. // Table captions are positioned between the table margins and its borders (outside the grid box borders) as described in
  1497. // https://www.w3.org/TR/css-tables-3/#bounding-box-assignment
  1498. // A visual representation of this model can be found at https://www.w3.org/TR/css-tables-3/images/table_container.png
  1499. m_state.get_mutable(table_box()).margin_bottom += total_captions_height;
  1500. m_automatic_content_height = m_table_height;
  1501. }
  1502. CSSPixels TableFormattingContext::automatic_content_width() const
  1503. {
  1504. return greatest_child_width(context_box());
  1505. }
  1506. CSSPixels TableFormattingContext::automatic_content_height() const
  1507. {
  1508. return m_automatic_content_height;
  1509. }
  1510. template<>
  1511. size_t TableFormattingContext::cell_span<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1512. {
  1513. return cell.row_span;
  1514. }
  1515. template<>
  1516. size_t TableFormattingContext::cell_span<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1517. {
  1518. return cell.column_span;
  1519. }
  1520. template<>
  1521. size_t TableFormattingContext::cell_index<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1522. {
  1523. return cell.row_index;
  1524. }
  1525. template<>
  1526. size_t TableFormattingContext::cell_index<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1527. {
  1528. return cell.column_index;
  1529. }
  1530. template<>
  1531. CSSPixels TableFormattingContext::cell_min_size<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1532. {
  1533. return cell.outer_min_height;
  1534. }
  1535. template<>
  1536. CSSPixels TableFormattingContext::cell_min_size<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1537. {
  1538. return cell.outer_min_width;
  1539. }
  1540. template<>
  1541. CSSPixels TableFormattingContext::cell_max_size<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1542. {
  1543. return cell.outer_max_height;
  1544. }
  1545. template<>
  1546. CSSPixels TableFormattingContext::cell_max_size<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1547. {
  1548. return cell.outer_max_width;
  1549. }
  1550. template<>
  1551. double TableFormattingContext::cell_percentage_contribution<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1552. {
  1553. // Definition of percentage contribution: https://www.w3.org/TR/css-tables-3/#percentage-contribution
  1554. auto const& computed_values = cell.box->computed_values();
  1555. auto max_height_percentage = computed_values.max_height().is_percentage() ? computed_values.max_height().percentage().value() : static_cast<double>(INFINITY);
  1556. auto height_percentage = computed_values.height().is_percentage() ? computed_values.height().percentage().value() : 0;
  1557. return min(height_percentage, max_height_percentage);
  1558. }
  1559. template<>
  1560. double TableFormattingContext::cell_percentage_contribution<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1561. {
  1562. // Definition of percentage contribution: https://www.w3.org/TR/css-tables-3/#percentage-contribution
  1563. auto const& computed_values = cell.box->computed_values();
  1564. auto max_width_percentage = computed_values.max_width().is_percentage() ? computed_values.max_width().percentage().value() : static_cast<double>(INFINITY);
  1565. auto width_percentage = computed_values.width().is_percentage() ? computed_values.width().percentage().value() : 0;
  1566. return min(width_percentage, max_width_percentage);
  1567. }
  1568. template<>
  1569. bool TableFormattingContext::cell_has_intrinsic_percentage<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1570. {
  1571. return cell.box->computed_values().height().is_percentage();
  1572. }
  1573. template<>
  1574. bool TableFormattingContext::cell_has_intrinsic_percentage<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1575. {
  1576. return cell.box->computed_values().width().is_percentage();
  1577. }
  1578. template<>
  1579. void TableFormattingContext::initialize_intrinsic_percentages_from_rows_or_columns<TableFormattingContext::Row>()
  1580. {
  1581. for (auto& row : m_rows) {
  1582. auto const& computed_values = row.box->computed_values();
  1583. // Definition of percentage contribution: https://www.w3.org/TR/css-tables-3/#percentage-contribution
  1584. auto max_height_percentage = computed_values.max_height().is_percentage() ? computed_values.max_height().percentage().value() : static_cast<double>(INFINITY);
  1585. auto height_percentage = computed_values.height().is_percentage() ? computed_values.height().percentage().value() : 0;
  1586. row.has_intrinsic_percentage = computed_values.max_height().is_percentage() || computed_values.height().is_percentage();
  1587. row.intrinsic_percentage = min(height_percentage, max_height_percentage);
  1588. }
  1589. }
  1590. template<>
  1591. void TableFormattingContext::initialize_intrinsic_percentages_from_rows_or_columns<TableFormattingContext::Column>()
  1592. {
  1593. size_t column_index = 0;
  1594. TableGrid::for_each_child_box_matching(table_box(), is_table_column_group, [&](auto& column_group_box) {
  1595. TableGrid::for_each_child_box_matching(column_group_box, is_table_column, [&](auto& column_box) {
  1596. auto const& computed_values = column_box.computed_values();
  1597. // Definition of percentage contribution: https://www.w3.org/TR/css-tables-3/#percentage-contribution
  1598. auto max_width_percentage = computed_values.max_width().is_percentage() ? computed_values.max_width().percentage().value() : static_cast<double>(INFINITY);
  1599. auto width_percentage = computed_values.width().is_percentage() ? computed_values.width().percentage().value() : 0;
  1600. m_columns[column_index].has_intrinsic_percentage = computed_values.max_width().is_percentage() || computed_values.width().is_percentage();
  1601. m_columns[column_index].intrinsic_percentage = min(width_percentage, max_width_percentage);
  1602. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*column_box.dom_node());
  1603. unsigned span = col_node.get_attribute_value(HTML::AttributeNames::span).to_number<unsigned>().value_or(1);
  1604. column_index += span;
  1605. });
  1606. });
  1607. }
  1608. template<class RowOrColumn>
  1609. void TableFormattingContext::initialize_intrinsic_percentages_from_cells()
  1610. {
  1611. auto& rows_or_columns = table_rows_or_columns<RowOrColumn>();
  1612. for (auto& cell : m_cells) {
  1613. auto cell_span_value = cell_span<RowOrColumn>(cell);
  1614. auto cell_start_rc_index = cell_index<RowOrColumn>(cell);
  1615. auto cell_end_rc_index = cell_start_rc_index + cell_span_value;
  1616. if (cell_has_intrinsic_percentage<RowOrColumn>(cell)) {
  1617. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  1618. rows_or_columns[rc_index].has_intrinsic_percentage = true;
  1619. }
  1620. if (cell_span_value != 1) {
  1621. continue;
  1622. }
  1623. } else {
  1624. continue;
  1625. }
  1626. size_t rc_index = cell_index<RowOrColumn>(cell);
  1627. rows_or_columns[rc_index].has_intrinsic_percentage = true;
  1628. rows_or_columns[rc_index].intrinsic_percentage = max(cell_percentage_contribution<RowOrColumn>(cell), rows_or_columns[rc_index].intrinsic_percentage);
  1629. }
  1630. }
  1631. template<>
  1632. CSSPixels TableFormattingContext::border_spacing<TableFormattingContext::Row>()
  1633. {
  1634. return border_spacing_vertical();
  1635. }
  1636. template<>
  1637. CSSPixels TableFormattingContext::border_spacing<TableFormattingContext::Column>()
  1638. {
  1639. return border_spacing_horizontal();
  1640. }
  1641. CSSPixels TableFormattingContext::border_spacing_horizontal() const
  1642. {
  1643. auto const& computed_values = table_box().computed_values();
  1644. // 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):
  1645. // https://www.w3.org/TR/css-tables-3/#collapsed-style-overrides
  1646. if (computed_values.border_collapse() == CSS::BorderCollapse::Collapse)
  1647. return 0;
  1648. return computed_values.border_spacing_horizontal().to_px(table_box());
  1649. }
  1650. CSSPixels TableFormattingContext::border_spacing_vertical() const
  1651. {
  1652. auto const& computed_values = table_box().computed_values();
  1653. // 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):
  1654. // https://www.w3.org/TR/css-tables-3/#collapsed-style-overrides
  1655. if (computed_values.border_collapse() == CSS::BorderCollapse::Collapse)
  1656. return 0;
  1657. return computed_values.border_spacing_vertical().to_px(table_box());
  1658. }
  1659. StaticPositionRect TableFormattingContext::calculate_static_position_rect(Box const& box) const
  1660. {
  1661. // FIXME: Implement static position calculation for table descendants instead of always returning a rectangle with zero position and size.
  1662. StaticPositionRect static_position;
  1663. auto offset_to_static_parent = content_box_rect_in_static_position_ancestor_coordinate_space(box, *box.containing_block());
  1664. static_position.rect = { offset_to_static_parent.location(), { 0, 0 } };
  1665. return static_position;
  1666. }
  1667. template<>
  1668. Vector<TableFormattingContext::Row>& TableFormattingContext::table_rows_or_columns()
  1669. {
  1670. return m_rows;
  1671. }
  1672. template<>
  1673. Vector<TableFormattingContext::Column>& TableFormattingContext::table_rows_or_columns()
  1674. {
  1675. return m_columns;
  1676. }
  1677. }