TableFormattingContext.cpp 67 KB

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