TableFormattingContext.cpp 48 KB

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