TableFormattingContext.cpp 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/DOM/Node.h>
  7. #include <LibWeb/HTML/BrowsingContext.h>
  8. #include <LibWeb/HTML/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, Box const& root, FormattingContext* parent)
  15. : FormattingContext(Type::Table, 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(LayoutMode layout_mode, 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, *verify_cast<BlockContainer>(child), this);
  37. caption_context->run(table_box(), layout_mode, *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);
  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 (width_is_auto_relative_to_state(computed_values.width(), containing_block_state)) {
  434. // If the table-root has 'width: auto', the used width is the greater of
  435. // min(GRIDMAX, the table’s containing block width), the used min-width of the table.
  436. if (width_of_table_containing_block.is_definite())
  437. used_width = max(min(grid_max, width_of_table_containing_block.to_px_or_zero()), used_min_width);
  438. else
  439. used_width = max(grid_max, used_min_width);
  440. // https://www.w3.org/TR/CSS22/tables.html#auto-table-layout
  441. // A percentage value for a column width is relative to the table width. If the table has 'width: auto',
  442. // a percentage represents a constraint on the column's width, which a UA should try to satisfy.
  443. for (auto& cell : m_cells) {
  444. auto const& cell_width = cell.box->computed_values().width();
  445. if (cell_width.is_percentage()) {
  446. CSSPixels adjusted_used_width = undistributable_space;
  447. if (cell_width.percentage().value() != 0)
  448. adjusted_used_width += CSSPixels::nearest_value_for(ceil(100 / cell_width.percentage().value() * cell.outer_max_width));
  449. if (width_of_table_containing_block.is_definite())
  450. used_width = min(max(used_width, adjusted_used_width), width_of_table_containing_block.to_px_or_zero());
  451. else
  452. used_width = max(used_width, adjusted_used_width);
  453. }
  454. }
  455. } else if (computed_values.width().is_max_content()) {
  456. used_width = grid_max;
  457. } else {
  458. // If the table-root’s width property has a computed value (resolving to
  459. // resolved-table-width) other than auto, the used width is the greater
  460. // of resolved-table-width, and the used min-width of the table.
  461. CSSPixels resolved_table_width = computed_values.width().to_px(table_box(), width_of_table_wrapper_containing_block);
  462. // Since used_width is content width, we need to subtract the border spacing from the specified width for a consistent comparison.
  463. used_width = max(resolved_table_width - table_box_state.border_box_left() - table_box_state.border_box_right(), used_min_width);
  464. if (!should_treat_max_width_as_none(table_box(), m_available_space->width))
  465. used_width = min(used_width, computed_values.max_width().to_px(table_box(), width_of_table_wrapper_containing_block));
  466. }
  467. table_box_state.set_content_width(used_width);
  468. auto& table_wrapper_box_state = m_state.get_mutable(table_wrapper());
  469. table_wrapper_box_state.set_content_width(table_box_state.border_box_width());
  470. }
  471. CSSPixels TableFormattingContext::compute_columns_total_used_width() const
  472. {
  473. CSSPixels total_used_width = 0;
  474. for (auto& column : m_columns) {
  475. total_used_width += column.used_width;
  476. }
  477. return total_used_width;
  478. }
  479. static CSSPixels compute_columns_total_candidate_width(Vector<CSSPixels> const& candidate_widths)
  480. {
  481. CSSPixels total_candidate_width = 0;
  482. for (auto width : candidate_widths) {
  483. total_candidate_width += width;
  484. }
  485. return total_candidate_width;
  486. }
  487. void TableFormattingContext::commit_candidate_column_widths(Vector<CSSPixels> const& candidate_widths)
  488. {
  489. VERIFY(candidate_widths.size() == m_columns.size());
  490. for (size_t i = 0; i < m_columns.size(); ++i) {
  491. m_columns[i].used_width = candidate_widths[i];
  492. }
  493. }
  494. void TableFormattingContext::assign_columns_width_linear_combination(Vector<CSSPixels> const& candidate_widths, CSSPixels available_width)
  495. {
  496. auto columns_total_candidate_width = compute_columns_total_candidate_width(candidate_widths);
  497. auto columns_total_used_width = compute_columns_total_used_width();
  498. if (columns_total_candidate_width == columns_total_used_width) {
  499. return;
  500. }
  501. auto candidate_weight = (available_width - columns_total_used_width) / static_cast<double>(columns_total_candidate_width - columns_total_used_width);
  502. for (size_t i = 0; i < m_columns.size(); ++i) {
  503. auto& column = m_columns[i];
  504. column.used_width = CSSPixels::nearest_value_for(candidate_weight * candidate_widths[i] + (1 - candidate_weight) * column.used_width);
  505. }
  506. }
  507. template<class ColumnFilter, class BaseWidthGetter>
  508. bool TableFormattingContext::distribute_excess_width_proportionally_to_base_width(CSSPixels excess_width, ColumnFilter column_filter, BaseWidthGetter base_width_getter)
  509. {
  510. bool found_matching_columns = false;
  511. CSSPixels total_base_width = 0;
  512. for (auto const& column : m_columns) {
  513. if (column_filter(column)) {
  514. total_base_width += base_width_getter(column);
  515. found_matching_columns = true;
  516. }
  517. }
  518. if (!found_matching_columns) {
  519. return false;
  520. }
  521. VERIFY(total_base_width > 0);
  522. for (auto& column : m_columns) {
  523. if (column_filter(column)) {
  524. column.used_width += CSSPixels::nearest_value_for(excess_width * base_width_getter(column) / static_cast<double>(total_base_width));
  525. }
  526. }
  527. return true;
  528. }
  529. template<class ColumnFilter>
  530. bool TableFormattingContext::distribute_excess_width_equally(CSSPixels excess_width, ColumnFilter column_filter)
  531. {
  532. size_t matching_column_count = 0;
  533. for (auto const& column : m_columns) {
  534. if (column_filter(column)) {
  535. ++matching_column_count;
  536. }
  537. }
  538. if (matching_column_count == 0) {
  539. return false;
  540. }
  541. for (auto& column : m_columns) {
  542. if (column_filter(column)) {
  543. column.used_width += excess_width / matching_column_count;
  544. }
  545. }
  546. return matching_column_count;
  547. }
  548. template<class ColumnFilter>
  549. bool TableFormattingContext::distribute_excess_width_by_intrinsic_percentage(CSSPixels excess_width, ColumnFilter column_filter)
  550. {
  551. bool found_matching_columns = false;
  552. double total_percentage_width = 0;
  553. for (auto const& column : m_columns) {
  554. if (column_filter(column)) {
  555. found_matching_columns = true;
  556. total_percentage_width += column.intrinsic_percentage;
  557. }
  558. }
  559. if (!found_matching_columns) {
  560. return false;
  561. }
  562. for (auto& column : m_columns) {
  563. if (column_filter(column)) {
  564. column.used_width += CSSPixels::nearest_value_for(excess_width * column.intrinsic_percentage / total_percentage_width);
  565. }
  566. }
  567. return true;
  568. }
  569. void TableFormattingContext::distribute_width_to_columns()
  570. {
  571. // Implements https://www.w3.org/TR/css-tables-3/#width-distribution-algorithm
  572. // The total horizontal border spacing is defined for each table:
  573. // - 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
  574. // - Otherwise, 0
  575. auto total_horizontal_border_spacing = m_columns.is_empty() ? 0 : (m_columns.size() + 1) * border_spacing_horizontal();
  576. // The assignable table width is the used width of the table minus the total horizontal border spacing (if any).
  577. // This is the width that we will be able to allocate to the columns.
  578. const CSSPixels available_width = m_state.get(table_box()).content_width() - total_horizontal_border_spacing;
  579. Vector<CSSPixels> candidate_widths;
  580. candidate_widths.resize(m_columns.size());
  581. // 1. The min-content sizing-guess is the set of column width assignments where each column is assigned its min-content width.
  582. for (size_t i = 0; i < m_columns.size(); ++i) {
  583. auto& column = m_columns[i];
  584. // In fixed mode, the min-content width of percent-columns and auto-columns is considered to be zero:
  585. // https://www.w3.org/TR/css-tables-3/#width-distribution-in-fixed-mode
  586. if (use_fixed_mode_layout() && !column.is_constrained) {
  587. continue;
  588. }
  589. column.used_width = column.min_size;
  590. candidate_widths[i] = column.min_size;
  591. }
  592. // 2. The min-content-percentage sizing-guess is the set of column width assignments where:
  593. // - each percent-column is assigned the larger of:
  594. // - its intrinsic percentage width times the assignable width and
  595. // - its min-content width.
  596. // - all other columns are assigned their min-content width.
  597. for (size_t i = 0; i < m_columns.size(); ++i) {
  598. auto& column = m_columns[i];
  599. if (column.has_intrinsic_percentage) {
  600. candidate_widths[i] = max(column.min_size, CSSPixels::nearest_value_for(column.intrinsic_percentage / 100 * available_width));
  601. }
  602. }
  603. // 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
  604. // linear combination (with weights adding to 1) of the two consecutive sizing-guesses whose width sums bound the available width.
  605. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  606. assign_columns_width_linear_combination(candidate_widths, available_width);
  607. return;
  608. } else {
  609. commit_candidate_column_widths(candidate_widths);
  610. }
  611. // 3. The min-content-specified sizing-guess is the set of column width assignments where:
  612. // - each percent-column is assigned the larger of:
  613. // - its intrinsic percentage width times the assignable width and
  614. // - its min-content width
  615. // - any other column that is constrained is assigned its max-content width
  616. // - all other columns are assigned their min-content width.
  617. for (size_t i = 0; i < m_columns.size(); ++i) {
  618. auto& column = m_columns[i];
  619. if (column.is_constrained) {
  620. candidate_widths[i] = column.max_size;
  621. }
  622. }
  623. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  624. assign_columns_width_linear_combination(candidate_widths, available_width);
  625. return;
  626. } else {
  627. commit_candidate_column_widths(candidate_widths);
  628. }
  629. // 4. The max-content sizing-guess is the set of column width assignments where:
  630. // - each percent-column is assigned the larger of:
  631. // - its intrinsic percentage width times the assignable width and
  632. // - its min-content width
  633. // - all other columns are assigned their max-content width.
  634. for (size_t i = 0; i < m_columns.size(); ++i) {
  635. auto& column = m_columns[i];
  636. if (!column.has_intrinsic_percentage) {
  637. candidate_widths[i] = column.max_size;
  638. }
  639. }
  640. if (available_width < compute_columns_total_candidate_width(candidate_widths)) {
  641. assign_columns_width_linear_combination(candidate_widths, available_width);
  642. return;
  643. } else {
  644. commit_candidate_column_widths(candidate_widths);
  645. }
  646. // Otherwise, the used widths of the columns are the result of starting from the max-content sizing-guess and distributing
  647. // the excess width to the columns of the table according to the rules for distributing excess width to columns (for used width).
  648. distribute_excess_width_to_columns(available_width);
  649. }
  650. void TableFormattingContext::distribute_excess_width_to_columns(CSSPixels available_width)
  651. {
  652. // Implements https://www.w3.org/TR/css-tables-3/#distributing-width-to-columns
  653. auto columns_total_used_width = compute_columns_total_used_width();
  654. if (columns_total_used_width >= available_width) {
  655. return;
  656. }
  657. auto excess_width = available_width - columns_total_used_width;
  658. if (excess_width == 0) {
  659. return;
  660. }
  661. if (use_fixed_mode_layout()) {
  662. distribute_excess_width_to_columns_fixed_mode(excess_width);
  663. return;
  664. }
  665. // 1. If there are non-constrained columns that have originating cells with intrinsic percentage width of 0% and with nonzero
  666. // max-content width (aka the columns allowed to grow by this rule), the distributed widths of the columns allowed to grow
  667. // by this rule are increased in proportion to max-content width so the total increase adds to the excess width.
  668. if (distribute_excess_width_proportionally_to_base_width(
  669. excess_width,
  670. [](auto const& column) {
  671. return !column.is_constrained && column.has_originating_cells && column.intrinsic_percentage == 0 && column.max_size > 0;
  672. },
  673. [](auto const& column) { return column.max_size; })) {
  674. excess_width = available_width - compute_columns_total_used_width();
  675. }
  676. if (excess_width == 0) {
  677. return;
  678. }
  679. // 2. Otherwise, if there are non-constrained columns that have originating cells with intrinsic percentage width of 0% (aka the columns
  680. // allowed to grow by this rule, which thanks to the previous rule must have zero max-content width), the distributed widths of the
  681. // columns allowed to grow by this rule are increased by equal amounts so the total increase adds to the excess width.
  682. if (distribute_excess_width_equally(excess_width,
  683. [](auto const& column) {
  684. return !column.is_constrained && column.has_originating_cells && column.intrinsic_percentage == 0;
  685. })) {
  686. excess_width = available_width - compute_columns_total_used_width();
  687. }
  688. if (excess_width == 0) {
  689. return;
  690. }
  691. // 3. Otherwise, if there are constrained columns with intrinsic percentage width of 0% and with nonzero max-content width
  692. // (aka the columns allowed to grow by this rule, which, due to other rules, must have originating cells), the distributed widths of the
  693. // columns allowed to grow by this rule are increased in proportion to max-content width so the total increase adds to the excess width.
  694. if (distribute_excess_width_proportionally_to_base_width(
  695. excess_width,
  696. [](auto const& column) {
  697. return column.is_constrained && column.intrinsic_percentage == 0 && column.max_size > 0;
  698. },
  699. [](auto const& column) { return column.max_size; })) {
  700. excess_width = available_width - compute_columns_total_used_width();
  701. }
  702. if (excess_width == 0) {
  703. return;
  704. }
  705. // 4. Otherwise, if there are columns with intrinsic percentage width greater than 0% (aka the columns allowed to grow by this rule,
  706. // which, due to other rules, must have originating cells), the distributed widths of the columns allowed to grow by this rule are
  707. // increased in proportion to intrinsic percentage width so the total increase adds to the excess width.
  708. if (distribute_excess_width_by_intrinsic_percentage(excess_width, [](auto const& column) {
  709. return column.intrinsic_percentage > 0;
  710. })) {
  711. excess_width = available_width - compute_columns_total_used_width();
  712. }
  713. if (excess_width == 0) {
  714. return;
  715. }
  716. // 5. Otherwise, if there is any such column, the distributed widths of all columns that have originating cells are increased by equal amounts
  717. // so the total increase adds to the excess width.
  718. if (distribute_excess_width_equally(
  719. excess_width,
  720. [](auto const& column) { return column.has_originating_cells; })) {
  721. excess_width = available_width - compute_columns_total_used_width();
  722. }
  723. if (excess_width == 0) {
  724. return;
  725. }
  726. // 6. Otherwise, the distributed widths of all columns are increased by equal amounts so the total increase adds to the excess width.
  727. distribute_excess_width_equally(excess_width, [](auto const&) { return true; });
  728. }
  729. void TableFormattingContext::distribute_excess_width_to_columns_fixed_mode(CSSPixels excess_width)
  730. {
  731. // Implements the fixed mode for https://www.w3.org/TR/css-tables-3/#distributing-width-to-columns.
  732. // If there are any columns with no width specified, the excess width is distributed in equally to such columns
  733. if (distribute_excess_width_equally(excess_width, [](auto const& column) { return !column.is_constrained && !column.has_intrinsic_percentage; })) {
  734. return;
  735. }
  736. // 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
  737. if (distribute_excess_width_proportionally_to_base_width(
  738. excess_width, [](auto const& column) { return column.used_width > 0; }, [](auto const& column) { return column.used_width; })) {
  739. return;
  740. }
  741. // 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
  742. if (distribute_excess_width_by_intrinsic_percentage(excess_width, [](auto const& column) { return column.intrinsic_percentage > 0; })) {
  743. return;
  744. }
  745. // otherwise, the excess width is distributed equally to the zero-sized columns
  746. distribute_excess_width_equally(excess_width, [](auto const& column) { return column.used_width == 0; });
  747. }
  748. void TableFormattingContext::compute_table_height(LayoutMode layout_mode)
  749. {
  750. // First pass of row height calculation:
  751. for (auto& row : m_rows) {
  752. auto row_computed_height = row.box->computed_values().height();
  753. if (row_computed_height.is_length()) {
  754. auto height_of_containing_block = m_state.get(*row.box->containing_block()).content_height();
  755. auto row_used_height = row_computed_height.to_px(row.box, height_of_containing_block);
  756. row.base_height = max(row.base_height, row_used_height);
  757. }
  758. }
  759. // First pass of cells layout:
  760. for (auto& cell : m_cells) {
  761. auto& row = m_rows[cell.row_index];
  762. auto& cell_state = m_state.get_mutable(cell.box);
  763. CSSPixels span_width = 0;
  764. for (size_t i = 0; i < cell.column_span; ++i)
  765. span_width += m_columns[cell.column_index + i].used_width;
  766. auto width_of_containing_block = m_state.get(*cell.box->containing_block()).content_width();
  767. auto height_of_containing_block = m_state.get(*cell.box->containing_block()).content_height();
  768. cell_state.padding_top = cell.box->computed_values().padding().top().to_px(cell.box, width_of_containing_block);
  769. cell_state.padding_bottom = cell.box->computed_values().padding().bottom().to_px(cell.box, width_of_containing_block);
  770. cell_state.padding_left = cell.box->computed_values().padding().left().to_px(cell.box, width_of_containing_block);
  771. cell_state.padding_right = cell.box->computed_values().padding().right().to_px(cell.box, width_of_containing_block);
  772. if (cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Separate) {
  773. cell_state.border_top = cell.box->computed_values().border_top().width;
  774. cell_state.border_bottom = cell.box->computed_values().border_bottom().width;
  775. cell_state.border_left = cell.box->computed_values().border_left().width;
  776. cell_state.border_right = cell.box->computed_values().border_right().width;
  777. }
  778. auto cell_computed_height = cell.box->computed_values().height();
  779. if (cell_computed_height.is_length()) {
  780. auto cell_used_height = cell_computed_height.to_px(cell.box, height_of_containing_block);
  781. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  782. row.base_height = max(row.base_height, cell_used_height);
  783. }
  784. // Compute cell width as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  785. // 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:
  786. // - the widths/heights of all spanned visible columns/rows
  787. // - the horizontal/vertical border-spacing times the amount of spanned visible columns/rows minus one
  788. // FIXME: Account for visibility.
  789. cell_state.set_content_width(span_width - cell_state.border_box_left() - cell_state.border_box_right() + (cell.column_span - 1) * border_spacing_horizontal());
  790. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  791. cell_state.set_content_height(independent_formatting_context->automatic_content_height());
  792. independent_formatting_context->parent_context_did_dimension_child_root_box();
  793. }
  794. cell.baseline = box_baseline(cell.box);
  795. // Implements https://www.w3.org/TR/css-tables-3/#computing-the-table-height
  796. // The minimum height of a row is the maximum of:
  797. // - the computed height (if definite, percentages being considered 0px) of its corresponding table-row (if nay)
  798. // - the computed height of each cell spanning the current row exclusively (if definite, percentages being treated as 0px), and
  799. // - the minimum height (ROWMIN) required by the cells spanning the row.
  800. // Note that we've already applied the first rule at the top of the method.
  801. if (cell.row_span == 1) {
  802. row.base_height = max(row.base_height, cell_state.border_box_height());
  803. }
  804. row.base_height = max(row.base_height, m_rows[cell.row_index].min_size);
  805. row.baseline = max(row.baseline, cell.baseline);
  806. }
  807. CSSPixels sum_rows_height = 0;
  808. for (auto& row : m_rows) {
  809. sum_rows_height += row.base_height;
  810. }
  811. m_table_height = sum_rows_height;
  812. if (!table_box().computed_values().height().is_auto()) {
  813. // If the table has a height property with a value other than auto, it is treated as a minimum height for the
  814. // table grid, and will eventually be distributed to the height of the rows if their collective minimum height
  815. // ends up smaller than this number.
  816. CSSPixels height_of_table_containing_block = m_state.get(*table_wrapper().containing_block()).content_height();
  817. auto specified_table_height = table_box().computed_values().height().to_px(table_box(), height_of_table_containing_block);
  818. auto const& table_state = m_state.get(table_box());
  819. m_table_height = max(m_table_height, specified_table_height - table_state.border_box_top() - table_state.border_box_bottom());
  820. }
  821. for (auto& row : m_rows) {
  822. // Reference size is the largest of
  823. // - its initial base height and
  824. // - its new base height (the one evaluated during the second layout pass, where percentages used in
  825. // rowgroups/rows/cells' specified heights were resolved according to the table height, instead of
  826. // being ignored as 0px).
  827. // Assign reference size to base size. Later, the reference size might change to a larger value during
  828. // the second pass of rows layout.
  829. row.reference_height = row.base_height;
  830. }
  831. // Second pass of rows height calculation:
  832. // At this point, percentage row height can be resolved because the final table height is calculated.
  833. for (auto& row : m_rows) {
  834. auto row_computed_height = row.box->computed_values().height();
  835. if (row_computed_height.is_percentage()) {
  836. auto row_used_height = row_computed_height.to_px(row.box, m_table_height);
  837. row.reference_height = max(row.reference_height, row_used_height);
  838. } else {
  839. continue;
  840. }
  841. }
  842. // Second pass cells layout:
  843. // At this point, percentage cell height can be resolved because the final table height is calculated.
  844. for (auto& cell : m_cells) {
  845. auto& row = m_rows[cell.row_index];
  846. auto& cell_state = m_state.get_mutable(cell.box);
  847. CSSPixels span_width = 0;
  848. for (size_t i = 0; i < cell.column_span; ++i)
  849. span_width += m_columns[cell.column_index + i].used_width;
  850. auto cell_computed_height = cell.box->computed_values().height();
  851. if (cell_computed_height.is_percentage()) {
  852. auto cell_used_height = cell_computed_height.to_px(cell.box, m_table_height);
  853. cell_state.set_content_height(cell_used_height - cell_state.border_box_top() - cell_state.border_box_bottom());
  854. row.reference_height = max(row.reference_height, cell_used_height);
  855. } else {
  856. continue;
  857. }
  858. cell_state.set_content_width(span_width - cell_state.border_box_left() - cell_state.border_box_right() + (cell.column_span - 1) * border_spacing_horizontal());
  859. if (auto independent_formatting_context = layout_inside(cell.box, layout_mode, cell_state.available_inner_space_or_constraints_from(*m_available_space))) {
  860. independent_formatting_context->parent_context_did_dimension_child_root_box();
  861. }
  862. cell.baseline = box_baseline(cell.box);
  863. row.reference_height = max(row.reference_height, cell_state.border_box_height());
  864. row.baseline = max(row.baseline, cell.baseline);
  865. }
  866. }
  867. void TableFormattingContext::distribute_height_to_rows()
  868. {
  869. CSSPixels sum_reference_height = 0;
  870. for (auto& row : m_rows) {
  871. sum_reference_height += row.reference_height;
  872. }
  873. if (sum_reference_height == 0)
  874. return;
  875. Vector<Row&> rows_with_auto_height;
  876. for (auto& row : m_rows) {
  877. if (row.box->computed_values().height().is_auto()) {
  878. rows_with_auto_height.append(row);
  879. }
  880. }
  881. if (m_table_height <= sum_reference_height) {
  882. // If the table height is equal or smaller than sum of reference sizes, the final height assigned to each row
  883. // will be the weighted mean of the base and the reference size that yields the correct total height.
  884. for (auto& row : m_rows) {
  885. auto weight = row.reference_height / static_cast<double>(sum_reference_height);
  886. auto final_height = m_table_height * weight;
  887. row.final_height = CSSPixels::nearest_value_for(final_height);
  888. }
  889. } else if (rows_with_auto_height.size() > 0) {
  890. // Else, if the table owns any “auto-height” row (a row whose size is only determined by its content size and
  891. // none of the specified heights), each non-auto-height row receives its reference height and auto-height rows
  892. // receive their reference size plus some increment which is equal to the height missing to amount to the
  893. // specified table height divided by the amount of such rows.
  894. for (auto& row : m_rows) {
  895. row.final_height = row.reference_height;
  896. }
  897. auto auto_height_rows_increment = (m_table_height - sum_reference_height) / rows_with_auto_height.size();
  898. for (auto& row : rows_with_auto_height) {
  899. row.final_height += auto_height_rows_increment;
  900. }
  901. } else {
  902. // Else, all rows receive their reference size plus some increment which is equal to the height missing to
  903. // amount to the specified table height divided by the amount of rows.
  904. auto increment = (m_table_height - sum_reference_height) / m_rows.size();
  905. for (auto& row : m_rows) {
  906. row.final_height = row.reference_height + increment;
  907. }
  908. }
  909. // Add undistributable space due to border spacing: https://www.w3.org/TR/css-tables-3/#computing-undistributable-space.
  910. m_table_height += (m_rows.size() + 1) * border_spacing_vertical();
  911. }
  912. void TableFormattingContext::position_row_boxes()
  913. {
  914. auto const& table_state = m_state.get(table_box());
  915. CSSPixels row_top_offset = table_state.offset.y() + table_state.padding_top + border_spacing_vertical();
  916. CSSPixels row_left_offset = table_state.border_left + table_state.padding_left + border_spacing_horizontal();
  917. for (size_t y = 0; y < m_rows.size(); y++) {
  918. auto& row = m_rows[y];
  919. auto& row_state = m_state.get_mutable(row.box);
  920. CSSPixels row_width = 0;
  921. for (auto& column : m_columns) {
  922. row_width += column.used_width;
  923. }
  924. row_state.set_content_height(row.final_height);
  925. row_state.set_content_width(row_width);
  926. row_state.set_content_x(row_left_offset);
  927. row_state.set_content_y(row_top_offset);
  928. row_top_offset += row_state.content_height() + border_spacing_vertical();
  929. }
  930. CSSPixels row_group_top_offset = table_state.border_top + table_state.padding_top;
  931. CSSPixels row_group_left_offset = table_state.border_left + table_state.padding_left;
  932. TableGrid::for_each_child_box_matching(table_box(), TableGrid::is_table_row_group, [&](auto& row_group_box) {
  933. CSSPixels row_group_height = 0;
  934. CSSPixels row_group_width = 0;
  935. auto& row_group_box_state = m_state.get_mutable(row_group_box);
  936. row_group_box_state.set_content_x(row_group_left_offset);
  937. row_group_box_state.set_content_y(row_group_top_offset);
  938. TableGrid::for_each_child_box_matching(row_group_box, TableGrid::is_table_row, [&](auto& row) {
  939. auto const& row_state = m_state.get(row);
  940. row_group_height += row_state.border_box_height();
  941. row_group_width = max(row_group_width, row_state.border_box_width());
  942. });
  943. row_group_box_state.set_content_height(row_group_height);
  944. row_group_box_state.set_content_width(row_group_width);
  945. row_group_top_offset += row_group_height;
  946. });
  947. auto total_content_height = max(row_top_offset, row_group_top_offset) - table_state.offset.y() - table_state.padding_top;
  948. m_table_height = max(total_content_height, m_table_height);
  949. }
  950. void TableFormattingContext::position_cell_boxes()
  951. {
  952. CSSPixels left_column_offset = 0;
  953. for (auto& column : m_columns) {
  954. column.left_offset = left_column_offset;
  955. left_column_offset += column.used_width;
  956. }
  957. for (auto& cell : m_cells) {
  958. auto& cell_state = m_state.get_mutable(cell.box);
  959. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  960. CSSPixels const cell_border_box_height = cell_state.content_height() + cell_state.border_box_top() + cell_state.border_box_bottom();
  961. CSSPixels const row_content_height = compute_row_content_height(cell);
  962. auto const& vertical_align = cell.box->computed_values().vertical_align();
  963. // The following image shows various alignment lines of a row:
  964. // https://www.w3.org/TR/css-tables-3/images/cell-align-explainer.png
  965. if (vertical_align.has<CSS::VerticalAlign>()) {
  966. auto height_diff = row_content_height - cell_border_box_height;
  967. switch (vertical_align.get<CSS::VerticalAlign>()) {
  968. case CSS::VerticalAlign::Middle: {
  969. cell_state.padding_top += height_diff / 2;
  970. cell_state.padding_bottom += height_diff / 2;
  971. break;
  972. }
  973. case CSS::VerticalAlign::Top: {
  974. cell_state.padding_bottom += height_diff;
  975. break;
  976. }
  977. case CSS::VerticalAlign::Bottom: {
  978. cell_state.padding_top += height_diff;
  979. break;
  980. }
  981. case CSS::VerticalAlign::Baseline: {
  982. cell_state.padding_top += m_rows[cell.row_index].baseline - cell.baseline;
  983. cell_state.padding_bottom += height_diff;
  984. break;
  985. }
  986. case CSS::VerticalAlign::Sub: {
  987. dbgln("FIXME: Implement \"vertical-align: sub\" support for table cells");
  988. break;
  989. }
  990. case CSS::VerticalAlign::Super: {
  991. dbgln("FIXME: Implement \"vertical-align: super\" support for table cells");
  992. break;
  993. }
  994. case CSS::VerticalAlign::TextBottom: {
  995. dbgln("FIXME: Implement \"vertical-align: text-bottom\" support for table cells");
  996. break;
  997. }
  998. case CSS::VerticalAlign::TextTop: {
  999. dbgln("FIXME: Implement \"vertical-align: text-top\" support for table cells");
  1000. break;
  1001. }
  1002. default:
  1003. VERIFY_NOT_REACHED();
  1004. }
  1005. }
  1006. // Compute cell position as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  1007. // left/top location is the sum of:
  1008. // - for top: the height reserved for top captions (including margins), if any
  1009. // - the padding-left/padding-top and border-left-width/border-top-width of the table
  1010. // FIXME: Account for visibility.
  1011. cell_state.offset = row_state.offset.translated(
  1012. cell_state.border_box_left() + m_columns[cell.column_index].left_offset + cell.column_index * border_spacing_horizontal(),
  1013. cell_state.border_box_top());
  1014. }
  1015. }
  1016. bool TableFormattingContext::use_fixed_mode_layout() const
  1017. {
  1018. // Implements https://www.w3.org/TR/css-tables-3/#in-fixed-mode.
  1019. // 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
  1020. // specified width of the table root is either a <length-percentage>, min-content or fit-content. When the specified width is not one of
  1021. // 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.
  1022. auto const& width = table_box().computed_values().width();
  1023. return table_box().computed_values().table_layout() == CSS::TableLayout::Fixed && (width.is_length() || width.is_percentage() || width.is_min_content() || width.is_fit_content());
  1024. }
  1025. bool TableFormattingContext::border_is_less_specific(const CSS::BorderData& a, const CSS::BorderData& b)
  1026. {
  1027. // Implements criteria for steps 1, 2 and 3 of border conflict resolution algorithm, as described in
  1028. // https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution.
  1029. static HashMap<CSS::LineStyle, unsigned> const line_style_score = {
  1030. { CSS::LineStyle::Inset, 0 },
  1031. { CSS::LineStyle::Groove, 1 },
  1032. { CSS::LineStyle::Outset, 2 },
  1033. { CSS::LineStyle::Ridge, 3 },
  1034. { CSS::LineStyle::Dotted, 4 },
  1035. { CSS::LineStyle::Dashed, 5 },
  1036. { CSS::LineStyle::Solid, 6 },
  1037. { CSS::LineStyle::Double, 7 },
  1038. };
  1039. // 1. Borders with the 'border-style' of 'hidden' take precedence over all other conflicting borders. Any border with this
  1040. // value suppresses all borders at this location.
  1041. if (a.line_style == CSS::LineStyle::Hidden) {
  1042. return false;
  1043. }
  1044. if (b.line_style == CSS::LineStyle::Hidden) {
  1045. return true;
  1046. }
  1047. // 2. Borders with a style of 'none' have the lowest priority. Only if the border properties of all the elements meeting
  1048. // at this edge are 'none' will the border be omitted (but note that 'none' is the default value for the border style.)
  1049. if (a.line_style == CSS::LineStyle::None) {
  1050. return true;
  1051. }
  1052. if (b.line_style == CSS::LineStyle::None) {
  1053. return false;
  1054. }
  1055. // 3. If none of the styles are 'hidden' and at least one of them is not 'none', then narrow borders are discarded in favor
  1056. // of wider ones. If several have the same 'border-width' then styles are preferred in this order: 'double', 'solid',
  1057. // 'dashed', 'dotted', 'ridge', 'outset', 'groove', and the lowest: 'inset'.
  1058. if (a.width > b.width) {
  1059. return false;
  1060. } else if (a.width < b.width) {
  1061. return true;
  1062. }
  1063. if (*line_style_score.get(a.line_style) > *line_style_score.get(b.line_style)) {
  1064. return false;
  1065. } else if (*line_style_score.get(a.line_style) < *line_style_score.get(b.line_style)) {
  1066. return true;
  1067. }
  1068. return false;
  1069. }
  1070. const CSS::BorderData& TableFormattingContext::border_data_conflicting_edge(TableFormattingContext::ConflictingEdge const& conflicting_edge)
  1071. {
  1072. auto const& style = conflicting_edge.element->computed_values();
  1073. switch (conflicting_edge.side) {
  1074. case ConflictingSide::Top: {
  1075. return style.border_top();
  1076. }
  1077. case ConflictingSide::Bottom: {
  1078. return style.border_bottom();
  1079. }
  1080. case ConflictingSide::Left: {
  1081. return style.border_left();
  1082. }
  1083. case ConflictingSide::Right: {
  1084. return style.border_right();
  1085. }
  1086. default: {
  1087. VERIFY_NOT_REACHED();
  1088. }
  1089. }
  1090. }
  1091. const Painting::PaintableBox::BorderDataWithElementKind TableFormattingContext::border_data_with_element_kind_from_conflicting_edge(ConflictingEdge const& conflicting_edge)
  1092. {
  1093. auto const& border_data = border_data_conflicting_edge(conflicting_edge);
  1094. return { .border_data = border_data, .element_kind = conflicting_edge.element_kind };
  1095. }
  1096. TableFormattingContext::ConflictingEdge const& TableFormattingContext::winning_conflicting_edge(TableFormattingContext::ConflictingEdge const& a, TableFormattingContext::ConflictingEdge const& b)
  1097. {
  1098. auto a_border_data = border_data_conflicting_edge(a);
  1099. auto b_border_data = border_data_conflicting_edge(b);
  1100. // First check if step 4 of border conflict resolution applies, as described in https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution.
  1101. if (a_border_data.line_style == b_border_data.line_style && a_border_data.width == b_border_data.width) {
  1102. // 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
  1103. // row group, column, column group and, lastly, table. When two elements of the same type conflict, then the one
  1104. // further to the left (if the table's 'direction' is 'ltr'; right, if it is 'rtl') and further to the top wins.
  1105. if (static_cast<unsigned>(a.element_kind) < static_cast<unsigned>(b.element_kind)) {
  1106. return a;
  1107. } else if (static_cast<unsigned>(a.element_kind) > static_cast<unsigned>(b.element_kind)) {
  1108. return b;
  1109. }
  1110. // Here the element kind is the same, thus the coordinates are either both set or not set.
  1111. VERIFY(a.column.has_value() == b.column.has_value());
  1112. VERIFY(a.row.has_value() == b.row.has_value());
  1113. if (a.column.has_value()) {
  1114. if (a.column.value() < b.column.value()) {
  1115. return a;
  1116. } else if (a.column.value() > b.column.value()) {
  1117. return b;
  1118. }
  1119. }
  1120. if (a.row.has_value()) {
  1121. if (a.row.value() < b.row.value()) {
  1122. return a;
  1123. } else if (a.row.value() > b.row.value()) {
  1124. return b;
  1125. }
  1126. }
  1127. return a;
  1128. }
  1129. // Apply steps 1, 2 and 3 of the border conflict resolution algorithm.
  1130. return border_is_less_specific(a_border_data, b_border_data) ? b : a;
  1131. }
  1132. void TableFormattingContext::border_conflict_resolution()
  1133. {
  1134. // Implements border conflict resolution, as described in https://www.w3.org/TR/CSS22/tables.html#border-conflict-resolution.
  1135. BorderConflictFinder finder(this);
  1136. for (auto& cell : m_cells) {
  1137. auto& cell_state = m_state.get_mutable(cell.box);
  1138. cell_state.set_table_cell_coordinates(
  1139. Painting::PaintableBox::TableCellCoordinates {
  1140. .row_index = cell.row_index,
  1141. .column_index = cell.column_index,
  1142. .row_span = cell.row_span,
  1143. .column_span = cell.column_span });
  1144. if (cell.box->computed_values().border_collapse() == CSS::BorderCollapse::Separate) {
  1145. continue;
  1146. }
  1147. Painting::PaintableBox::BordersDataWithElementKind override_borders_data;
  1148. ConflictingEdge winning_edge_left {
  1149. .element = cell.box,
  1150. .element_kind = Painting::PaintableBox::ConflictingElementKind::Cell,
  1151. .side = ConflictingSide::Left,
  1152. .row = cell.row_index,
  1153. .column = cell.column_index,
  1154. };
  1155. for (auto const& conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Left)) {
  1156. winning_edge_left = winning_conflicting_edge(winning_edge_left, conflicting_edge);
  1157. }
  1158. override_borders_data.left = border_data_with_element_kind_from_conflicting_edge(winning_edge_left);
  1159. cell_state.border_left = override_borders_data.left.border_data.width;
  1160. ConflictingEdge winning_edge_right {
  1161. .element = cell.box,
  1162. .element_kind = Painting::PaintableBox::ConflictingElementKind::Cell,
  1163. .side = ConflictingSide::Right,
  1164. .row = cell.row_index,
  1165. .column = cell.column_index,
  1166. };
  1167. for (auto const& conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Right)) {
  1168. winning_edge_right = winning_conflicting_edge(winning_edge_right, conflicting_edge);
  1169. }
  1170. override_borders_data.right = border_data_with_element_kind_from_conflicting_edge(winning_edge_right);
  1171. cell_state.border_right = override_borders_data.right.border_data.width;
  1172. ConflictingEdge winning_edge_top {
  1173. .element = cell.box,
  1174. .element_kind = Painting::PaintableBox::ConflictingElementKind::Cell,
  1175. .side = ConflictingSide::Top,
  1176. .row = cell.row_index,
  1177. .column = cell.column_index,
  1178. };
  1179. for (auto const& conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Top)) {
  1180. winning_edge_top = winning_conflicting_edge(winning_edge_top, conflicting_edge);
  1181. }
  1182. override_borders_data.top = border_data_with_element_kind_from_conflicting_edge(winning_edge_top);
  1183. cell_state.border_top = override_borders_data.top.border_data.width;
  1184. ConflictingEdge winning_edge_bottom {
  1185. .element = cell.box,
  1186. .element_kind = Painting::PaintableBox::ConflictingElementKind::Cell,
  1187. .side = ConflictingSide::Bottom,
  1188. .row = cell.row_index,
  1189. .column = cell.column_index,
  1190. };
  1191. for (auto const& conflicting_edge : finder.conflicting_edges(cell, ConflictingSide::Bottom)) {
  1192. winning_edge_bottom = winning_conflicting_edge(winning_edge_bottom, conflicting_edge);
  1193. }
  1194. override_borders_data.bottom = border_data_with_element_kind_from_conflicting_edge(winning_edge_bottom);
  1195. cell_state.border_bottom = override_borders_data.bottom.border_data.width;
  1196. cell_state.set_override_borders_data(override_borders_data);
  1197. }
  1198. }
  1199. CSSPixels TableFormattingContext::compute_row_content_height(Cell const& cell) const
  1200. {
  1201. auto& row_state = m_state.get(m_rows[cell.row_index].box);
  1202. if (cell.row_span == 1) {
  1203. return row_state.content_height();
  1204. }
  1205. // The height of a cell is the sum of all spanned rows, as described in
  1206. // https://www.w3.org/TR/css-tables-3/#bounding-box-assignment
  1207. // When the row span is greater than 1, the borders of inner rows within the span have to be
  1208. // included in the content height of the spanning cell. First top and final bottom borders are
  1209. // excluded to be consistent with the handling of row span 1 case above, which uses the content
  1210. // height (no top and bottom borders) of the row.
  1211. CSSPixels span_height = 0;
  1212. for (size_t i = 0; i < cell.row_span; ++i) {
  1213. auto const& row_state = m_state.get(m_rows[cell.row_index + i].box);
  1214. if (i == 0) {
  1215. span_height += row_state.content_height() + row_state.border_box_bottom();
  1216. } else if (i == cell.row_span - 1) {
  1217. span_height += row_state.border_box_top() + row_state.content_height();
  1218. } else {
  1219. span_height += row_state.border_box_height();
  1220. }
  1221. }
  1222. // Compute cell height as specified by https://www.w3.org/TR/css-tables-3/#bounding-box-assignment:
  1223. // width/height is the sum of:
  1224. // - the widths/heights of all spanned visible columns/rows
  1225. // - the horizontal/vertical border-spacing times the amount of spanned visible columns/rows minus one
  1226. // FIXME: Account for visibility.
  1227. span_height += (cell.row_span - 1) * border_spacing_vertical();
  1228. return span_height;
  1229. }
  1230. TableFormattingContext::BorderConflictFinder::BorderConflictFinder(TableFormattingContext const* context)
  1231. : m_context(context)
  1232. {
  1233. collect_conflicting_col_elements();
  1234. collect_conflicting_row_group_elements();
  1235. }
  1236. void TableFormattingContext::BorderConflictFinder::collect_conflicting_col_elements()
  1237. {
  1238. m_col_elements_by_index.resize(m_context->m_columns.size());
  1239. for (auto* child = m_context->table_box().first_child(); child; child = child->next_sibling()) {
  1240. if (!child->display().is_table_column_group()) {
  1241. continue;
  1242. }
  1243. size_t column_index = 0;
  1244. for (auto* child_of_column_group = child->first_child(); child_of_column_group; child_of_column_group = child_of_column_group->next_sibling()) {
  1245. VERIFY(child_of_column_group->display().is_table_column());
  1246. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*child_of_column_group->dom_node());
  1247. unsigned span = col_node.get_attribute_value(HTML::AttributeNames::span).to_number<unsigned>().value_or(1);
  1248. for (size_t i = column_index; i < column_index + span; ++i) {
  1249. m_col_elements_by_index[i] = child_of_column_group;
  1250. }
  1251. column_index += span;
  1252. }
  1253. }
  1254. }
  1255. void TableFormattingContext::BorderConflictFinder::collect_conflicting_row_group_elements()
  1256. {
  1257. m_row_group_elements_by_index.resize(m_context->m_rows.size());
  1258. size_t current_row_index = 0;
  1259. TableGrid::for_each_child_box_matching(m_context->table_box(), TableGrid::is_table_row_group, [&](auto& row_group_box) {
  1260. auto start_row_index = current_row_index;
  1261. size_t row_count = 0;
  1262. TableGrid::for_each_child_box_matching(row_group_box, TableGrid::is_table_row, [&](auto&) {
  1263. ++row_count;
  1264. });
  1265. TableGrid::for_each_child_box_matching(row_group_box, TableGrid::is_table_row, [&](auto&) {
  1266. m_row_group_elements_by_index[current_row_index] = RowGroupInfo {
  1267. .row_group = &row_group_box, .start_index = start_row_index, .row_count = row_count
  1268. };
  1269. ++current_row_index;
  1270. return IterationDecision::Continue;
  1271. });
  1272. });
  1273. }
  1274. void TableFormattingContext::BorderConflictFinder::collect_cell_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1275. {
  1276. // Right edge of the cell to the left.
  1277. if (cell.column_index >= cell.column_span && edge == ConflictingSide::Left) {
  1278. auto left_cell_column_index = cell.column_index - cell.column_span;
  1279. auto maybe_cell_to_left = m_context->m_cells_by_coordinate[cell.row_index][left_cell_column_index];
  1280. if (maybe_cell_to_left.has_value()) {
  1281. result.append({ maybe_cell_to_left->box, Painting::PaintableBox::ConflictingElementKind::Cell, ConflictingSide::Right, cell.row_index, left_cell_column_index });
  1282. }
  1283. }
  1284. // Left edge of the cell to the right.
  1285. if (cell.column_index + cell.column_span < m_context->m_cells_by_coordinate[cell.row_index].size() && edge == ConflictingSide::Right) {
  1286. auto right_cell_column_index = cell.column_index + cell.column_span;
  1287. auto maybe_cell_to_right = m_context->m_cells_by_coordinate[cell.row_index][right_cell_column_index];
  1288. if (maybe_cell_to_right.has_value()) {
  1289. result.append({ maybe_cell_to_right->box, Painting::PaintableBox::ConflictingElementKind::Cell, ConflictingSide::Left, cell.row_index, right_cell_column_index });
  1290. }
  1291. }
  1292. // Bottom edge of the cell above.
  1293. if (cell.row_index >= cell.row_span && edge == ConflictingSide::Top) {
  1294. auto above_cell_row_index = cell.row_index - cell.row_span;
  1295. auto maybe_cell_above = m_context->m_cells_by_coordinate[above_cell_row_index][cell.column_index];
  1296. if (maybe_cell_above.has_value()) {
  1297. result.append({ maybe_cell_above->box, Painting::PaintableBox::ConflictingElementKind::Cell, ConflictingSide::Bottom, above_cell_row_index, cell.column_index });
  1298. }
  1299. }
  1300. // Top edge of the cell below.
  1301. if (cell.row_index + cell.row_span < m_context->m_cells_by_coordinate.size() && edge == ConflictingSide::Bottom) {
  1302. auto below_cell_row_index = cell.row_index + cell.row_span;
  1303. auto maybe_cell_below = m_context->m_cells_by_coordinate[below_cell_row_index][cell.column_index];
  1304. if (maybe_cell_below.has_value()) {
  1305. result.append({ maybe_cell_below->box, Painting::PaintableBox::ConflictingElementKind::Cell, ConflictingSide::Top, below_cell_row_index, cell.column_index });
  1306. }
  1307. }
  1308. }
  1309. void TableFormattingContext::BorderConflictFinder::collect_row_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1310. {
  1311. // Top edge of the row.
  1312. if (edge == ConflictingSide::Top) {
  1313. result.append({ m_context->m_rows[cell.row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Top, cell.row_index, {} });
  1314. }
  1315. // Bottom edge of the row.
  1316. if (edge == ConflictingSide::Bottom) {
  1317. result.append({ m_context->m_rows[cell.row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Bottom, cell.row_index, {} });
  1318. }
  1319. // Bottom edge of the row above.
  1320. if (cell.row_index >= cell.row_span && edge == ConflictingSide::Top) {
  1321. auto above_row_index = cell.row_index - cell.row_span;
  1322. result.append({ m_context->m_rows[above_row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Bottom, above_row_index, {} });
  1323. }
  1324. // Top edge of the row below.
  1325. if (cell.row_index + cell.row_span < m_context->m_rows.size() && edge == ConflictingSide::Bottom) {
  1326. auto below_row_index = cell.row_index + cell.row_span;
  1327. result.append({ m_context->m_rows[below_row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Top, below_row_index, {} });
  1328. }
  1329. }
  1330. void TableFormattingContext::BorderConflictFinder::collect_row_group_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1331. {
  1332. auto const& maybe_row_group = m_row_group_elements_by_index[cell.row_index];
  1333. // Top edge of the row group.
  1334. if (maybe_row_group.has_value() && cell.row_index == maybe_row_group->start_index && edge == ConflictingSide::Top) {
  1335. result.append({ maybe_row_group->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Top, maybe_row_group->start_index, {} });
  1336. }
  1337. // Bottom edge of the row group above.
  1338. if (cell.row_index >= cell.row_span) {
  1339. auto const& maybe_row_group_above = m_row_group_elements_by_index[cell.row_index - cell.row_span];
  1340. 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) {
  1341. result.append({ maybe_row_group_above->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Bottom, maybe_row_group_above->start_index, {} });
  1342. }
  1343. }
  1344. // Bottom edge of the row group.
  1345. if (maybe_row_group.has_value() && cell.row_index == maybe_row_group->start_index + maybe_row_group->row_count - 1 && edge == ConflictingSide::Bottom) {
  1346. result.append({ maybe_row_group->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Bottom, maybe_row_group->start_index, {} });
  1347. }
  1348. // Top edge of the row group below.
  1349. if (cell.row_index + cell.row_span < m_row_group_elements_by_index.size()) {
  1350. auto const& maybe_row_group_below = m_row_group_elements_by_index[cell.row_index + cell.row_span];
  1351. if (maybe_row_group_below.has_value() && cell.row_index + cell.row_span == maybe_row_group_below->start_index && edge == ConflictingSide::Bottom) {
  1352. result.append({ maybe_row_group_below->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Top, maybe_row_group_below->start_index, {} });
  1353. }
  1354. }
  1355. }
  1356. void TableFormattingContext::BorderConflictFinder::collect_column_group_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1357. {
  1358. // Left edge of the column group.
  1359. if (m_col_elements_by_index[cell.column_index] && edge == ConflictingSide::Left) {
  1360. result.append({ m_col_elements_by_index[cell.column_index], Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Left, {}, cell.column_index });
  1361. }
  1362. // Right edge of the column group to the left.
  1363. if (cell.column_index >= cell.column_span && m_col_elements_by_index[cell.column_index - cell.column_span] && edge == ConflictingSide::Left) {
  1364. auto left_column_index = cell.column_index - cell.column_span;
  1365. result.append({ m_col_elements_by_index[left_column_index], Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Right, {}, left_column_index });
  1366. }
  1367. // Right edge of the column group.
  1368. if (m_col_elements_by_index[cell.column_index] && edge == ConflictingSide::Right) {
  1369. result.append({ m_col_elements_by_index[cell.column_index], Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Right, {}, cell.column_index });
  1370. }
  1371. // Left edge of the column group to the right.
  1372. if (cell.column_index + cell.column_span < m_col_elements_by_index.size() && m_col_elements_by_index[cell.column_index + cell.column_span] && edge == ConflictingSide::Right) {
  1373. auto right_column_index = cell.column_index + cell.column_span;
  1374. result.append({ m_col_elements_by_index[right_column_index], Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Left, {}, right_column_index });
  1375. }
  1376. }
  1377. void TableFormattingContext::BorderConflictFinder::collect_table_box_conflicting_edges(Vector<ConflictingEdge>& result, Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1378. {
  1379. // Top edge from column group or table. Left and right edges of the column group are handled in collect_column_group_conflicting_edges.
  1380. if (cell.row_index == 0 && edge == ConflictingSide::Top) {
  1381. if (m_col_elements_by_index[cell.column_index]) {
  1382. result.append({ m_col_elements_by_index[cell.column_index], Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Top, {}, cell.column_index });
  1383. }
  1384. result.append({ &m_context->table_box(), Painting::PaintableBox::ConflictingElementKind::Table, ConflictingSide::Top, {}, {} });
  1385. }
  1386. // Bottom edge from column group or table. Left and right edges of the column group are handled in collect_column_group_conflicting_edges.
  1387. if (cell.row_index + cell.row_span == m_context->m_rows.size() && edge == ConflictingSide::Bottom) {
  1388. if (m_col_elements_by_index[cell.column_index]) {
  1389. result.append({ m_col_elements_by_index[cell.column_index], Painting::PaintableBox::ConflictingElementKind::ColumnGroup, ConflictingSide::Bottom, {}, cell.column_index });
  1390. }
  1391. result.append({ &m_context->table_box(), Painting::PaintableBox::ConflictingElementKind::Table, ConflictingSide::Bottom, {}, {} });
  1392. }
  1393. // Left edge from row group or table. Top and bottom edges of the row group are handled in collect_row_group_conflicting_edges.
  1394. if (cell.column_index == 0 && edge == ConflictingSide::Left) {
  1395. result.append({ m_context->m_rows[cell.row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Left, cell.row_index, {} });
  1396. if (m_row_group_elements_by_index[cell.row_index].has_value()) {
  1397. result.append({ m_row_group_elements_by_index[cell.row_index]->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Left, cell.row_index, {} });
  1398. }
  1399. result.append({ &m_context->table_box(), Painting::PaintableBox::ConflictingElementKind::Table, ConflictingSide::Left, {}, {} });
  1400. }
  1401. // Right edge from row group or table. Top and bottom edges of the row group are handled in collect_row_group_conflicting_edges.
  1402. if (cell.column_index + cell.column_span == m_context->m_columns.size() && edge == ConflictingSide::Right) {
  1403. result.append({ m_context->m_rows[cell.row_index].box, Painting::PaintableBox::ConflictingElementKind::Row, ConflictingSide::Right, cell.row_index, {} });
  1404. if (m_row_group_elements_by_index[cell.row_index].has_value()) {
  1405. result.append({ m_row_group_elements_by_index[cell.row_index]->row_group, Painting::PaintableBox::ConflictingElementKind::RowGroup, ConflictingSide::Right, cell.row_index, {} });
  1406. }
  1407. result.append({ &m_context->table_box(), Painting::PaintableBox::ConflictingElementKind::Table, ConflictingSide::Right, {}, {} });
  1408. }
  1409. }
  1410. Vector<TableFormattingContext::ConflictingEdge> TableFormattingContext::BorderConflictFinder::conflicting_edges(
  1411. Cell const& cell, TableFormattingContext::ConflictingSide edge) const
  1412. {
  1413. Vector<ConflictingEdge> result = {};
  1414. collect_cell_conflicting_edges(result, cell, edge);
  1415. collect_row_conflicting_edges(result, cell, edge);
  1416. collect_row_group_conflicting_edges(result, cell, edge);
  1417. collect_column_group_conflicting_edges(result, cell, edge);
  1418. collect_table_box_conflicting_edges(result, cell, edge);
  1419. return result;
  1420. }
  1421. void TableFormattingContext::finish_grid_initialization(TableGrid const& table_grid)
  1422. {
  1423. m_columns.resize(table_grid.column_count());
  1424. m_cells_by_coordinate.resize(m_rows.size());
  1425. for (auto& position_to_cell_row : m_cells_by_coordinate) {
  1426. position_to_cell_row.resize(table_grid.column_count());
  1427. }
  1428. for (auto const& cell : m_cells) {
  1429. m_cells_by_coordinate[cell.row_index][cell.column_index] = cell;
  1430. m_columns[cell.column_index].has_originating_cells = true;
  1431. }
  1432. }
  1433. void TableFormattingContext::run(Box const& box, LayoutMode layout_mode, AvailableSpace const& available_space)
  1434. {
  1435. m_available_space = available_space;
  1436. auto total_captions_height = run_caption_layout(layout_mode, CSS::CaptionSide::Top);
  1437. // Determine the number of rows/columns the table requires.
  1438. finish_grid_initialization(TableGrid::calculate_row_column_grid(box, m_cells, m_rows));
  1439. border_conflict_resolution();
  1440. // Compute the minimum width of each column.
  1441. compute_cell_measures();
  1442. compute_outer_content_sizes();
  1443. compute_table_measures<Column>();
  1444. // https://www.w3.org/TR/css-tables-3/#row-layout
  1445. // Since during row layout the specified heights of cells in the row were ignored and cells that were spanning more than one rows
  1446. // have not been sized correctly, their height will need to be eventually distributed to the set of rows they spanned. This is done
  1447. // by running the same algorithm as the column measurement, with the span=1 value being initialized (for min-content) with the largest
  1448. // of the resulting height of the previous row layout, the height specified on the corresponding table-row (if any), and the largest
  1449. // height specified on cells that span this row only (the algorithm starts by considering cells of span 2 on top of that assignment).
  1450. compute_table_measures<Row>();
  1451. // Compute the width of the table.
  1452. compute_table_width();
  1453. if (available_space.width.is_intrinsic_sizing_constraint() && !available_space.height.is_intrinsic_sizing_constraint()) {
  1454. return;
  1455. }
  1456. // Distribute the width of the table among columns.
  1457. distribute_width_to_columns();
  1458. compute_table_height(layout_mode);
  1459. distribute_height_to_rows();
  1460. position_row_boxes();
  1461. position_cell_boxes();
  1462. m_state.get_mutable(table_box()).set_content_height(m_table_height);
  1463. total_captions_height += run_caption_layout(layout_mode, CSS::CaptionSide::Bottom);
  1464. // Table captions are positioned between the table margins and its borders (outside the grid box borders) as described in
  1465. // https://www.w3.org/TR/css-tables-3/#bounding-box-assignment
  1466. // A visual representation of this model can be found at https://www.w3.org/TR/css-tables-3/images/table_container.png
  1467. m_state.get_mutable(table_box()).margin_bottom += total_captions_height;
  1468. m_automatic_content_height = m_table_height;
  1469. }
  1470. CSSPixels TableFormattingContext::automatic_content_width() const
  1471. {
  1472. return greatest_child_width(context_box());
  1473. }
  1474. CSSPixels TableFormattingContext::automatic_content_height() const
  1475. {
  1476. return m_automatic_content_height;
  1477. }
  1478. template<>
  1479. size_t TableFormattingContext::cell_span<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1480. {
  1481. return cell.row_span;
  1482. }
  1483. template<>
  1484. size_t TableFormattingContext::cell_span<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1485. {
  1486. return cell.column_span;
  1487. }
  1488. template<>
  1489. size_t TableFormattingContext::cell_index<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1490. {
  1491. return cell.row_index;
  1492. }
  1493. template<>
  1494. size_t TableFormattingContext::cell_index<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1495. {
  1496. return cell.column_index;
  1497. }
  1498. template<>
  1499. CSSPixels TableFormattingContext::cell_min_size<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1500. {
  1501. return cell.outer_min_height;
  1502. }
  1503. template<>
  1504. CSSPixels TableFormattingContext::cell_min_size<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1505. {
  1506. return cell.outer_min_width;
  1507. }
  1508. template<>
  1509. CSSPixels TableFormattingContext::cell_max_size<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1510. {
  1511. return cell.outer_max_height;
  1512. }
  1513. template<>
  1514. CSSPixels TableFormattingContext::cell_max_size<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1515. {
  1516. return cell.outer_max_width;
  1517. }
  1518. template<>
  1519. double TableFormattingContext::cell_percentage_contribution<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1520. {
  1521. // Definition of percentage contribution: https://www.w3.org/TR/css-tables-3/#percentage-contribution
  1522. auto const& computed_values = cell.box->computed_values();
  1523. auto max_height_percentage = computed_values.max_height().is_percentage() ? computed_values.max_height().percentage().value() : static_cast<double>(INFINITY);
  1524. auto height_percentage = computed_values.height().is_percentage() ? computed_values.height().percentage().value() : 0;
  1525. return min(height_percentage, max_height_percentage);
  1526. }
  1527. template<>
  1528. double TableFormattingContext::cell_percentage_contribution<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1529. {
  1530. // Definition of percentage contribution: https://www.w3.org/TR/css-tables-3/#percentage-contribution
  1531. auto const& computed_values = cell.box->computed_values();
  1532. auto max_width_percentage = computed_values.max_width().is_percentage() ? computed_values.max_width().percentage().value() : static_cast<double>(INFINITY);
  1533. auto width_percentage = computed_values.width().is_percentage() ? computed_values.width().percentage().value() : 0;
  1534. return min(width_percentage, max_width_percentage);
  1535. }
  1536. template<>
  1537. bool TableFormattingContext::cell_has_intrinsic_percentage<TableFormattingContext::Row>(TableFormattingContext::Cell const& cell)
  1538. {
  1539. return cell.box->computed_values().height().is_percentage();
  1540. }
  1541. template<>
  1542. bool TableFormattingContext::cell_has_intrinsic_percentage<TableFormattingContext::Column>(TableFormattingContext::Cell const& cell)
  1543. {
  1544. return cell.box->computed_values().width().is_percentage();
  1545. }
  1546. template<>
  1547. void TableFormattingContext::initialize_intrinsic_percentages_from_rows_or_columns<TableFormattingContext::Row>()
  1548. {
  1549. for (auto& row : m_rows) {
  1550. auto const& computed_values = row.box->computed_values();
  1551. // Definition of percentage contribution: https://www.w3.org/TR/css-tables-3/#percentage-contribution
  1552. auto max_height_percentage = computed_values.max_height().is_percentage() ? computed_values.max_height().percentage().value() : static_cast<double>(INFINITY);
  1553. auto height_percentage = computed_values.height().is_percentage() ? computed_values.height().percentage().value() : 0;
  1554. row.has_intrinsic_percentage = computed_values.max_height().is_percentage() || computed_values.height().is_percentage();
  1555. row.intrinsic_percentage = min(height_percentage, max_height_percentage);
  1556. }
  1557. }
  1558. template<>
  1559. void TableFormattingContext::initialize_intrinsic_percentages_from_rows_or_columns<TableFormattingContext::Column>()
  1560. {
  1561. size_t column_index = 0;
  1562. TableGrid::for_each_child_box_matching(table_box(), is_table_column_group, [&](auto& column_group_box) {
  1563. TableGrid::for_each_child_box_matching(column_group_box, is_table_column, [&](auto& column_box) {
  1564. auto const& computed_values = column_box.computed_values();
  1565. // Definition of percentage contribution: https://www.w3.org/TR/css-tables-3/#percentage-contribution
  1566. auto max_width_percentage = computed_values.max_width().is_percentage() ? computed_values.max_width().percentage().value() : static_cast<double>(INFINITY);
  1567. auto width_percentage = computed_values.width().is_percentage() ? computed_values.width().percentage().value() : 0;
  1568. m_columns[column_index].has_intrinsic_percentage = computed_values.max_width().is_percentage() || computed_values.width().is_percentage();
  1569. m_columns[column_index].intrinsic_percentage = min(width_percentage, max_width_percentage);
  1570. auto const& col_node = static_cast<HTML::HTMLTableColElement const&>(*column_box.dom_node());
  1571. unsigned span = col_node.get_attribute_value(HTML::AttributeNames::span).to_number<unsigned>().value_or(1);
  1572. column_index += span;
  1573. });
  1574. });
  1575. }
  1576. template<class RowOrColumn>
  1577. void TableFormattingContext::initialize_intrinsic_percentages_from_cells()
  1578. {
  1579. auto& rows_or_columns = table_rows_or_columns<RowOrColumn>();
  1580. for (auto& cell : m_cells) {
  1581. auto cell_span_value = cell_span<RowOrColumn>(cell);
  1582. auto cell_start_rc_index = cell_index<RowOrColumn>(cell);
  1583. auto cell_end_rc_index = cell_start_rc_index + cell_span_value;
  1584. if (cell_has_intrinsic_percentage<RowOrColumn>(cell)) {
  1585. for (auto rc_index = cell_start_rc_index; rc_index < cell_end_rc_index; rc_index++) {
  1586. rows_or_columns[rc_index].has_intrinsic_percentage = true;
  1587. }
  1588. if (cell_span_value != 1) {
  1589. continue;
  1590. }
  1591. } else {
  1592. continue;
  1593. }
  1594. size_t rc_index = cell_index<RowOrColumn>(cell);
  1595. rows_or_columns[rc_index].has_intrinsic_percentage = true;
  1596. rows_or_columns[rc_index].intrinsic_percentage = max(cell_percentage_contribution<RowOrColumn>(cell), rows_or_columns[rc_index].intrinsic_percentage);
  1597. }
  1598. }
  1599. template<>
  1600. CSSPixels TableFormattingContext::border_spacing<TableFormattingContext::Row>()
  1601. {
  1602. return border_spacing_vertical();
  1603. }
  1604. template<>
  1605. CSSPixels TableFormattingContext::border_spacing<TableFormattingContext::Column>()
  1606. {
  1607. return border_spacing_horizontal();
  1608. }
  1609. CSSPixels TableFormattingContext::border_spacing_horizontal() const
  1610. {
  1611. auto const& computed_values = table_box().computed_values();
  1612. // 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):
  1613. // https://www.w3.org/TR/css-tables-3/#collapsed-style-overrides
  1614. if (computed_values.border_collapse() == CSS::BorderCollapse::Collapse)
  1615. return 0;
  1616. return computed_values.border_spacing_horizontal().to_px(table_box());
  1617. }
  1618. CSSPixels TableFormattingContext::border_spacing_vertical() const
  1619. {
  1620. auto const& computed_values = table_box().computed_values();
  1621. // 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):
  1622. // https://www.w3.org/TR/css-tables-3/#collapsed-style-overrides
  1623. if (computed_values.border_collapse() == CSS::BorderCollapse::Collapse)
  1624. return 0;
  1625. return computed_values.border_spacing_vertical().to_px(table_box());
  1626. }
  1627. template<>
  1628. Vector<TableFormattingContext::Row>& TableFormattingContext::table_rows_or_columns()
  1629. {
  1630. return m_rows;
  1631. }
  1632. template<>
  1633. Vector<TableFormattingContext::Column>& TableFormattingContext::table_rows_or_columns()
  1634. {
  1635. return m_columns;
  1636. }
  1637. }