FormattingContext.cpp 58 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208
  1. /*
  2. * Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/Dump.h>
  7. #include <LibWeb/Layout/BlockFormattingContext.h>
  8. #include <LibWeb/Layout/Box.h>
  9. #include <LibWeb/Layout/FlexFormattingContext.h>
  10. #include <LibWeb/Layout/FormattingContext.h>
  11. #include <LibWeb/Layout/GridFormattingContext.h>
  12. #include <LibWeb/Layout/InitialContainingBlock.h>
  13. #include <LibWeb/Layout/ReplacedBox.h>
  14. #include <LibWeb/Layout/SVGFormattingContext.h>
  15. #include <LibWeb/Layout/SVGSVGBox.h>
  16. #include <LibWeb/Layout/TableBox.h>
  17. #include <LibWeb/Layout/TableCellBox.h>
  18. #include <LibWeb/Layout/TableFormattingContext.h>
  19. namespace Web::Layout {
  20. FormattingContext::FormattingContext(Type type, LayoutState& state, Box const& context_box, FormattingContext* parent)
  21. : m_type(type)
  22. , m_parent(parent)
  23. , m_context_box(context_box)
  24. , m_state(state)
  25. {
  26. }
  27. FormattingContext::~FormattingContext() = default;
  28. bool FormattingContext::creates_block_formatting_context(Box const& box)
  29. {
  30. if (box.is_root_element())
  31. return true;
  32. if (box.is_floating())
  33. return true;
  34. if (box.is_absolutely_positioned())
  35. return true;
  36. if (box.is_inline_block())
  37. return true;
  38. if (is<TableCellBox>(box))
  39. return true;
  40. if (box.display().is_flex_inside())
  41. return false;
  42. CSS::Overflow overflow_x = box.computed_values().overflow_x();
  43. if ((overflow_x != CSS::Overflow::Visible) && (overflow_x != CSS::Overflow::Clip))
  44. return true;
  45. CSS::Overflow overflow_y = box.computed_values().overflow_y();
  46. if ((overflow_y != CSS::Overflow::Visible) && (overflow_y != CSS::Overflow::Clip))
  47. return true;
  48. auto display = box.display();
  49. if (display.is_flow_root_inside())
  50. return true;
  51. if (box.parent()) {
  52. auto parent_display = box.parent()->display();
  53. if (parent_display.is_flex_inside()) {
  54. // FIXME: Flex items (direct children of the element with display: flex or inline-flex) if they are neither flex nor grid nor table containers themselves.
  55. if (!display.is_flex_inside())
  56. return true;
  57. }
  58. if (parent_display.is_grid_inside()) {
  59. if (!display.is_grid_inside()) {
  60. return true;
  61. }
  62. }
  63. }
  64. // FIXME: table-caption
  65. // FIXME: anonymous table cells
  66. // FIXME: Elements with contain: layout, content, or paint.
  67. // FIXME: multicol
  68. // FIXME: column-span: all
  69. return false;
  70. }
  71. OwnPtr<FormattingContext> FormattingContext::create_independent_formatting_context_if_needed(LayoutState& state, Box const& child_box)
  72. {
  73. if (child_box.is_replaced_box() && !child_box.can_have_children()) {
  74. // NOTE: This is a bit strange.
  75. // Basically, we create a pretend formatting context for replaced elements that does nothing.
  76. // This allows other formatting contexts to treat them like elements that actually need inside layout
  77. // without having separate code to handle replaced elements.
  78. // FIXME: Find a better abstraction for this.
  79. struct ReplacedFormattingContext : public FormattingContext {
  80. ReplacedFormattingContext(LayoutState& state, Box const& box)
  81. : FormattingContext(Type::Block, state, box)
  82. {
  83. }
  84. virtual float automatic_content_height() const override { return 0; };
  85. virtual void run(Box const&, LayoutMode, AvailableSpace const&) override { }
  86. };
  87. return make<ReplacedFormattingContext>(state, child_box);
  88. }
  89. if (!child_box.can_have_children())
  90. return {};
  91. auto child_display = child_box.display();
  92. if (is<SVGSVGBox>(child_box))
  93. return make<SVGFormattingContext>(state, child_box, this);
  94. if (child_display.is_flex_inside())
  95. return make<FlexFormattingContext>(state, child_box, this);
  96. if (creates_block_formatting_context(child_box))
  97. return make<BlockFormattingContext>(state, verify_cast<BlockContainer>(child_box), this);
  98. if (child_display.is_table_inside())
  99. return make<TableFormattingContext>(state, verify_cast<TableBox>(child_box), this);
  100. if (child_display.is_grid_inside()) {
  101. return make<GridFormattingContext>(state, verify_cast<BlockContainer>(child_box), this);
  102. }
  103. VERIFY(is_block_formatting_context());
  104. VERIFY(!child_box.children_are_inline());
  105. // The child box is a block container that doesn't create its own BFC.
  106. // It will be formatted by this BFC.
  107. if (!child_display.is_flow_inside()) {
  108. dbgln("FIXME: Child box doesn't create BFC, but inside is also not flow! display={}", child_display.to_string());
  109. // HACK: Instead of crashing, create a dummy formatting context that does nothing.
  110. // FIXME: Remove this once it's no longer needed. It currently swallows problem with standalone
  111. // table-related boxes that don't get fixed up by CSS anonymous table box generation.
  112. struct DummyFormattingContext : public FormattingContext {
  113. DummyFormattingContext(LayoutState& state, Box const& box)
  114. : FormattingContext(Type::Block, state, box)
  115. {
  116. }
  117. virtual float automatic_content_height() const override { return 0; };
  118. virtual void run(Box const&, LayoutMode, AvailableSpace const&) override { }
  119. };
  120. return make<DummyFormattingContext>(state, child_box);
  121. }
  122. VERIFY(child_box.is_block_container());
  123. VERIFY(child_display.is_flow_inside());
  124. return {};
  125. }
  126. OwnPtr<FormattingContext> FormattingContext::layout_inside(Box const& child_box, LayoutMode layout_mode, AvailableSpace const& available_space)
  127. {
  128. {
  129. // OPTIMIZATION: If we're doing intrinsic sizing and `child_box` has definite size in both axes,
  130. // we don't need to layout its insides. The size is resolvable without learning
  131. // the metrics of whatever's inside the box.
  132. auto const& used_values = m_state.get(child_box);
  133. if (layout_mode == LayoutMode::IntrinsicSizing
  134. && used_values.width_constraint == SizeConstraint::None
  135. && used_values.height_constraint == SizeConstraint::None
  136. && used_values.has_definite_width()
  137. && used_values.has_definite_height()) {
  138. return nullptr;
  139. }
  140. }
  141. if (!child_box.can_have_children())
  142. return {};
  143. auto independent_formatting_context = create_independent_formatting_context_if_needed(m_state, child_box);
  144. if (independent_formatting_context)
  145. independent_formatting_context->run(child_box, layout_mode, available_space);
  146. else
  147. run(child_box, layout_mode, available_space);
  148. return independent_formatting_context;
  149. }
  150. float FormattingContext::greatest_child_width(Box const& box)
  151. {
  152. float max_width = 0;
  153. if (box.children_are_inline()) {
  154. for (auto& line_box : m_state.get(verify_cast<BlockContainer>(box)).line_boxes) {
  155. max_width = max(max_width, line_box.width());
  156. }
  157. } else {
  158. box.for_each_child_of_type<Box>([&](Box const& child) {
  159. if (!child.is_absolutely_positioned())
  160. max_width = max(max_width, m_state.get(child).border_box_width());
  161. });
  162. }
  163. return max_width;
  164. }
  165. FormattingContext::ShrinkToFitResult FormattingContext::calculate_shrink_to_fit_widths(Box const& box)
  166. {
  167. return {
  168. .preferred_width = calculate_max_content_width(box),
  169. .preferred_minimum_width = calculate_min_content_width(box),
  170. };
  171. }
  172. static Gfx::FloatSize solve_replaced_size_constraint(LayoutState const& state, float w, float h, ReplacedBox const& box)
  173. {
  174. // 10.4 Minimum and maximum widths: 'min-width' and 'max-width'
  175. auto const& containing_block = *box.containing_block();
  176. auto const& containing_block_state = state.get(containing_block);
  177. auto width_of_containing_block = CSS::Length::make_px(containing_block_state.content_width());
  178. auto height_of_containing_block = CSS::Length::make_px(containing_block_state.content_height());
  179. auto specified_min_width = box.computed_values().min_width().is_auto() ? 0 : box.computed_values().min_width().resolved(box, width_of_containing_block).to_px(box);
  180. auto specified_max_width = box.computed_values().max_width().is_none() ? w : box.computed_values().max_width().resolved(box, width_of_containing_block).to_px(box);
  181. auto specified_min_height = box.computed_values().min_height().is_auto() ? 0 : box.computed_values().min_height().resolved(box, height_of_containing_block).to_px(box);
  182. auto specified_max_height = box.computed_values().max_height().is_none() ? h : box.computed_values().max_height().resolved(box, height_of_containing_block).to_px(box);
  183. auto min_width = min(specified_min_width, specified_max_width);
  184. auto max_width = max(specified_min_width, specified_max_width);
  185. auto min_height = min(specified_min_height, specified_max_height);
  186. auto max_height = max(specified_min_height, specified_max_height);
  187. if (w > max_width)
  188. return { w, max(max_width * h / w, min_height) };
  189. if (w < min_width)
  190. return { max_width, min(min_width * h / w, max_height) };
  191. if (h > max_height)
  192. return { max(max_height * w / h, min_width), max_height };
  193. if (h < min_height)
  194. return { min(min_height * w / h, max_width), min_height };
  195. if ((w > max_width && h > max_height) && (max_width / w < max_height / h))
  196. return { max_width, max(min_height, max_width * h / w) };
  197. if ((w > max_width && h > max_height) && (max_width / w > max_height / h))
  198. return { max(min_width, max_height * w / h), max_height };
  199. if ((w < min_width && h < min_height) && (min_width / w < min_height / h))
  200. return { min(max_width, min_height * w / h), min_height };
  201. if ((w < min_width && h < min_height) && (min_width / w > min_height / h))
  202. return { min_width, min(max_height, min_width * h / w) };
  203. if (w < min_width && h > max_height)
  204. return { min_width, max_height };
  205. if (w > max_width && h < min_height)
  206. return { max_width, min_height };
  207. return { w, h };
  208. }
  209. float FormattingContext::compute_auto_height_for_block_level_element(Box const& box, AvailableSpace const& available_space) const
  210. {
  211. if (creates_block_formatting_context(box))
  212. return compute_auto_height_for_block_formatting_context_root(verify_cast<BlockContainer>(box));
  213. auto const& box_state = m_state.get(box);
  214. auto display = box.display();
  215. if (display.is_flex_inside()) {
  216. // https://drafts.csswg.org/css-flexbox-1/#algo-main-container
  217. // NOTE: The automatic block size of a block-level flex container is its max-content size.
  218. return calculate_max_content_height(box, available_space.width);
  219. }
  220. // https://www.w3.org/TR/CSS22/visudet.html#normal-block
  221. // 10.6.3 Block-level non-replaced elements in normal flow when 'overflow' computes to 'visible'
  222. // The element's height is the distance from its top content edge to the first applicable of the following:
  223. // 1. the bottom edge of the last line box, if the box establishes a inline formatting context with one or more lines
  224. if (box.children_are_inline() && !box_state.line_boxes.is_empty())
  225. return box_state.line_boxes.last().bottom();
  226. // 2. the bottom edge of the bottom (possibly collapsed) margin of its last in-flow child, if the child's bottom margin does not collapse with the element's bottom margin
  227. // FIXME: 3. the bottom border edge of the last in-flow child whose top margin doesn't collapse with the element's bottom margin
  228. if (!box.children_are_inline()) {
  229. for (auto* child_box = box.last_child_of_type<Box>(); child_box; child_box = child_box->previous_sibling_of_type<Box>()) {
  230. if (child_box->is_absolutely_positioned() || child_box->is_floating())
  231. continue;
  232. // FIXME: This is hack. If the last child is a list-item marker box, we ignore it for purposes of height calculation.
  233. // Perhaps markers should not be considered in-flow(?) Perhaps they should always be the first child of the list-item
  234. // box instead of the last child.
  235. if (child_box->is_list_item_marker_box())
  236. continue;
  237. auto const& child_box_state = m_state.get(*child_box);
  238. // Ignore anonymous block containers with no lines. These don't count as in-flow block boxes.
  239. if (child_box->is_anonymous() && child_box->is_block_container() && child_box_state.line_boxes.is_empty())
  240. continue;
  241. // FIXME: Handle margin collapsing.
  242. return max(0.0f, child_box_state.offset.y() + child_box_state.content_height() + child_box_state.margin_box_bottom());
  243. }
  244. }
  245. // 4. zero, otherwise
  246. return 0;
  247. }
  248. // https://www.w3.org/TR/CSS22/visudet.html#root-height
  249. float FormattingContext::compute_auto_height_for_block_formatting_context_root(BlockContainer const& root) const
  250. {
  251. // 10.6.7 'Auto' heights for block formatting context roots
  252. Optional<float> top;
  253. Optional<float> bottom;
  254. if (root.children_are_inline()) {
  255. // If it only has inline-level children, the height is the distance between
  256. // the top content edge and the bottom of the bottommost line box.
  257. auto const& line_boxes = m_state.get(root).line_boxes;
  258. top = 0;
  259. if (!line_boxes.is_empty())
  260. bottom = line_boxes.last().bottom();
  261. } else {
  262. // If it has block-level children, the height is the distance between
  263. // the top margin-edge of the topmost block-level child box
  264. // and the bottom margin-edge of the bottommost block-level child box.
  265. root.for_each_child_of_type<Box>([&](Layout::Box& child_box) {
  266. // Absolutely positioned children are ignored,
  267. // and relatively positioned boxes are considered without their offset.
  268. // Note that the child box may be an anonymous block box.
  269. if (child_box.is_absolutely_positioned())
  270. return IterationDecision::Continue;
  271. // FIXME: This doesn't look right.
  272. if ((root.computed_values().overflow_y() == CSS::Overflow::Visible) && child_box.is_floating())
  273. return IterationDecision::Continue;
  274. auto const& child_box_state = m_state.get(child_box);
  275. float child_box_top = child_box_state.offset.y() - child_box_state.margin_box_top();
  276. float child_box_bottom = child_box_state.offset.y() + child_box_state.content_height() + child_box_state.margin_box_bottom();
  277. if (!top.has_value() || child_box_top < top.value())
  278. top = child_box_top;
  279. if (!bottom.has_value() || child_box_bottom > bottom.value())
  280. bottom = child_box_bottom;
  281. return IterationDecision::Continue;
  282. });
  283. }
  284. // In addition, if the element has any floating descendants
  285. // whose bottom margin edge is below the element's bottom content edge,
  286. // then the height is increased to include those edges.
  287. for (auto* floating_box : m_state.get(root).floating_descendants()) {
  288. // NOTE: Floating box coordinates are relative to their own containing block,
  289. // which may or may not be the BFC root.
  290. auto margin_box = margin_box_rect_in_ancestor_coordinate_space(*floating_box, root, m_state);
  291. float floating_box_bottom_margin_edge = margin_box.bottom() + 1;
  292. if (!bottom.has_value() || floating_box_bottom_margin_edge > bottom.value())
  293. bottom = floating_box_bottom_margin_edge;
  294. }
  295. return max(0.0f, bottom.value_or(0) - top.value_or(0));
  296. }
  297. // 10.3.2 Inline, replaced elements, https://www.w3.org/TR/CSS22/visudet.html#inline-replaced-width
  298. float FormattingContext::tentative_width_for_replaced_element(LayoutState const& state, ReplacedBox const& box, CSS::Size const& computed_width, AvailableSpace const& available_space)
  299. {
  300. // Treat percentages of indefinite containing block widths as 0 (the initial width).
  301. if (computed_width.is_percentage() && !state.get(*box.containing_block()).has_definite_width())
  302. return 0;
  303. auto height_of_containing_block = CSS::Length::make_px(containing_block_height_for(box, state));
  304. auto const& computed_height = box.computed_values().height();
  305. float used_width = computed_width.resolved(box, CSS::Length::make_px(available_space.width.to_px())).to_px(box);
  306. // If 'height' and 'width' both have computed values of 'auto' and the element also has an intrinsic width,
  307. // then that intrinsic width is the used value of 'width'.
  308. if (computed_height.is_auto() && computed_width.is_auto() && box.has_intrinsic_width())
  309. return box.intrinsic_width().value();
  310. // If 'height' and 'width' both have computed values of 'auto' and the element has no intrinsic width,
  311. // but does have an intrinsic height and intrinsic ratio;
  312. // or if 'width' has a computed value of 'auto',
  313. // 'height' has some other computed value, and the element does have an intrinsic ratio; then the used value of 'width' is:
  314. //
  315. // (used height) * (intrinsic ratio)
  316. if ((computed_height.is_auto() && computed_width.is_auto() && !box.has_intrinsic_width() && box.has_intrinsic_height() && box.has_intrinsic_aspect_ratio())
  317. || (computed_width.is_auto() && !computed_height.is_auto() && box.has_intrinsic_aspect_ratio())) {
  318. return compute_height_for_replaced_element(state, box, available_space) * box.intrinsic_aspect_ratio().value();
  319. }
  320. // If 'height' and 'width' both have computed values of 'auto' and the element has an intrinsic ratio but no intrinsic height or width,
  321. // then the used value of 'width' is undefined in CSS 2.2. However, it is suggested that, if the containing block's width does not itself
  322. // depend on the replaced element's width, then the used value of 'width' is calculated from the constraint equation used for block-level,
  323. // non-replaced elements in normal flow.
  324. // Otherwise, if 'width' has a computed value of 'auto', and the element has an intrinsic width, then that intrinsic width is the used value of 'width'.
  325. if (computed_width.is_auto() && box.has_intrinsic_width())
  326. return box.intrinsic_width().value();
  327. // Otherwise, if 'width' has a computed value of 'auto', but none of the conditions above are met, then the used value of 'width' becomes 300px.
  328. // If 300px is too wide to fit the device, UAs should use the width of the largest rectangle that has a 2:1 ratio and fits the device instead.
  329. if (computed_width.is_auto())
  330. return 300;
  331. return used_width;
  332. }
  333. void FormattingContext::compute_width_for_absolutely_positioned_element(Box const& box, AvailableSpace const& available_space)
  334. {
  335. if (is<ReplacedBox>(box))
  336. compute_width_for_absolutely_positioned_replaced_element(verify_cast<ReplacedBox>(box), available_space);
  337. else
  338. compute_width_for_absolutely_positioned_non_replaced_element(box, available_space);
  339. }
  340. void FormattingContext::compute_height_for_absolutely_positioned_element(Box const& box, AvailableSpace const& available_space)
  341. {
  342. if (is<ReplacedBox>(box))
  343. compute_height_for_absolutely_positioned_replaced_element(static_cast<ReplacedBox const&>(box), available_space);
  344. else
  345. compute_height_for_absolutely_positioned_non_replaced_element(box, available_space);
  346. }
  347. float FormattingContext::compute_width_for_replaced_element(LayoutState const& state, ReplacedBox const& box, AvailableSpace const& available_space)
  348. {
  349. // 10.3.4 Block-level, replaced elements in normal flow...
  350. // 10.3.2 Inline, replaced elements
  351. auto zero_value = CSS::Length::make_px(0);
  352. auto width_of_containing_block_as_length = CSS::Length::make_px(available_space.width.to_px());
  353. auto margin_left = box.computed_values().margin().left().resolved(box, width_of_containing_block_as_length).resolved(box);
  354. auto margin_right = box.computed_values().margin().right().resolved(box, width_of_containing_block_as_length).resolved(box);
  355. // A computed value of 'auto' for 'margin-left' or 'margin-right' becomes a used value of '0'.
  356. if (margin_left.is_auto())
  357. margin_left = zero_value;
  358. if (margin_right.is_auto())
  359. margin_right = zero_value;
  360. auto computed_width = box.computed_values().width();
  361. // 1. The tentative used width is calculated (without 'min-width' and 'max-width')
  362. auto used_width = tentative_width_for_replaced_element(state, box, computed_width, available_space);
  363. // 2. The tentative used width is greater than 'max-width', the rules above are applied again,
  364. // but this time using the computed value of 'max-width' as the computed value for 'width'.
  365. auto computed_max_width = box.computed_values().max_width();
  366. if (!computed_max_width.is_none()) {
  367. if (used_width > computed_max_width.resolved(box, width_of_containing_block_as_length).to_px(box)) {
  368. used_width = tentative_width_for_replaced_element(state, box, computed_max_width, available_space);
  369. }
  370. }
  371. // 3. If the resulting width is smaller than 'min-width', the rules above are applied again,
  372. // but this time using the value of 'min-width' as the computed value for 'width'.
  373. auto computed_min_width = box.computed_values().min_width();
  374. if (!computed_min_width.is_auto()) {
  375. if (used_width < computed_min_width.resolved(box, width_of_containing_block_as_length).to_px(box)) {
  376. used_width = tentative_width_for_replaced_element(state, box, computed_min_width, available_space);
  377. }
  378. }
  379. return used_width;
  380. }
  381. // 10.6.2 Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements
  382. // https://www.w3.org/TR/CSS22/visudet.html#inline-replaced-height
  383. float FormattingContext::tentative_height_for_replaced_element(LayoutState const& state, ReplacedBox const& box, CSS::Size const& computed_height, AvailableSpace const& available_space)
  384. {
  385. // Treat percentages of indefinite containing block heights as 0 (the initial height).
  386. if (computed_height.is_percentage() && !state.get(*box.containing_block()).has_definite_height())
  387. return 0;
  388. auto const& computed_width = box.computed_values().width();
  389. // If 'height' and 'width' both have computed values of 'auto' and the element also has
  390. // an intrinsic height, then that intrinsic height is the used value of 'height'.
  391. if (computed_width.is_auto() && computed_height.is_auto() && box.has_intrinsic_height())
  392. return box.intrinsic_height().value();
  393. // Otherwise, if 'height' has a computed value of 'auto', and the element has an intrinsic ratio then the used value of 'height' is:
  394. //
  395. // (used width) / (intrinsic ratio)
  396. if (computed_height.is_auto() && box.has_intrinsic_aspect_ratio())
  397. return compute_width_for_replaced_element(state, box, available_space) / box.intrinsic_aspect_ratio().value();
  398. // Otherwise, if 'height' has a computed value of 'auto', and the element has an intrinsic height, then that intrinsic height is the used value of 'height'.
  399. if (computed_height.is_auto() && box.has_intrinsic_height())
  400. return box.intrinsic_height().value();
  401. // Otherwise, if 'height' has a computed value of 'auto', but none of the conditions above are met,
  402. // then the used value of 'height' must be set to the height of the largest rectangle that has a 2:1 ratio, has a height not greater than 150px,
  403. // and has a width not greater than the device width.
  404. if (computed_height.is_auto())
  405. return 150;
  406. return computed_height.resolved(box, CSS::Length::make_px(available_space.height.to_px())).to_px(box);
  407. }
  408. float FormattingContext::compute_height_for_replaced_element(LayoutState const& state, ReplacedBox const& box, AvailableSpace const& available_space)
  409. {
  410. // 10.6.2 Inline replaced elements, block-level replaced elements in normal flow,
  411. // 'inline-block' replaced elements in normal flow and floating replaced elements
  412. auto width_of_containing_block_as_length = CSS::Length::make_px(available_space.width.to_px());
  413. auto height_of_containing_block_as_length = CSS::Length::make_px(available_space.height.to_px());
  414. auto computed_width = box.computed_values().width();
  415. auto computed_height = box.computed_values().height();
  416. float used_height = tentative_height_for_replaced_element(state, box, computed_height, available_space);
  417. if (computed_width.is_auto() && computed_height.is_auto() && box.has_intrinsic_aspect_ratio()) {
  418. float w = tentative_width_for_replaced_element(state, box, computed_width, available_space);
  419. float h = used_height;
  420. used_height = solve_replaced_size_constraint(state, w, h, box).height();
  421. }
  422. return used_height;
  423. }
  424. void FormattingContext::compute_width_for_absolutely_positioned_non_replaced_element(Box const& box, AvailableSpace const& available_space)
  425. {
  426. auto width_of_containing_block = available_space.width.to_px();
  427. auto width_of_containing_block_as_length = CSS::Length::make_px(width_of_containing_block);
  428. auto& computed_values = box.computed_values();
  429. auto zero_value = CSS::Length::make_px(0);
  430. auto margin_left = CSS::Length::make_auto();
  431. auto margin_right = CSS::Length::make_auto();
  432. auto const border_left = computed_values.border_left().width;
  433. auto const border_right = computed_values.border_right().width;
  434. auto const padding_left = computed_values.padding().left().resolved(box, width_of_containing_block_as_length).to_px(box);
  435. auto const padding_right = computed_values.padding().right().resolved(box, width_of_containing_block_as_length).to_px(box);
  436. auto try_compute_width = [&](auto const& a_width) {
  437. margin_left = computed_values.margin().left().resolved(box, width_of_containing_block_as_length).resolved(box);
  438. margin_right = computed_values.margin().right().resolved(box, width_of_containing_block_as_length).resolved(box);
  439. auto left = computed_values.inset().left().resolved(box, width_of_containing_block_as_length).resolved(box);
  440. auto right = computed_values.inset().right().resolved(box, width_of_containing_block_as_length).resolved(box);
  441. auto width = a_width;
  442. auto solve_for_left = [&] {
  443. return CSS::Length(width_of_containing_block - margin_left.to_px(box) - border_left - padding_left - width.to_px(box) - padding_right - border_right - margin_right.to_px(box) - right.to_px(box), CSS::Length::Type::Px);
  444. };
  445. auto solve_for_width = [&] {
  446. return CSS::Length(width_of_containing_block - left.to_px(box) - margin_left.to_px(box) - border_left - padding_left - padding_right - border_right - margin_right.to_px(box) - right.to_px(box), CSS::Length::Type::Px);
  447. };
  448. auto solve_for_right = [&] {
  449. return CSS::Length(width_of_containing_block - left.to_px(box) - margin_left.to_px(box) - border_left - padding_left - width.to_px(box) - padding_right - border_right - margin_right.to_px(box), CSS::Length::Type::Px);
  450. };
  451. // If all three of 'left', 'width', and 'right' are 'auto':
  452. if (left.is_auto() && width.is_auto() && right.is_auto()) {
  453. // First set any 'auto' values for 'margin-left' and 'margin-right' to 0.
  454. if (margin_left.is_auto())
  455. margin_left = CSS::Length::make_px(0);
  456. if (margin_right.is_auto())
  457. margin_right = CSS::Length::make_px(0);
  458. // Then, if the 'direction' property of the element establishing the static-position containing block
  459. // is 'ltr' set 'left' to the static position and apply rule number three below;
  460. // otherwise, set 'right' to the static position and apply rule number one below.
  461. // FIXME: This is very hackish.
  462. left = CSS::Length::make_px(0);
  463. goto Rule3;
  464. }
  465. if (!left.is_auto() && !width.is_auto() && !right.is_auto()) {
  466. // FIXME: This should be solved in a more complicated way.
  467. return width;
  468. }
  469. if (margin_left.is_auto())
  470. margin_left = CSS::Length::make_px(0);
  471. if (margin_right.is_auto())
  472. margin_right = CSS::Length::make_px(0);
  473. // 1. 'left' and 'width' are 'auto' and 'right' is not 'auto',
  474. // then the width is shrink-to-fit. Then solve for 'left'
  475. if (left.is_auto() && width.is_auto() && !right.is_auto()) {
  476. auto result = calculate_shrink_to_fit_widths(box);
  477. solve_for_left();
  478. auto available_width = solve_for_width();
  479. width = CSS::Length(min(max(result.preferred_minimum_width, available_width.to_px(box)), result.preferred_width), CSS::Length::Type::Px);
  480. }
  481. // 2. 'left' and 'right' are 'auto' and 'width' is not 'auto',
  482. // then if the 'direction' property of the element establishing
  483. // the static-position containing block is 'ltr' set 'left'
  484. // to the static position, otherwise set 'right' to the static position.
  485. // Then solve for 'left' (if 'direction is 'rtl') or 'right' (if 'direction' is 'ltr').
  486. else if (left.is_auto() && right.is_auto() && !width.is_auto()) {
  487. // FIXME: Check direction
  488. // FIXME: Use the static-position containing block
  489. left = zero_value;
  490. right = solve_for_right();
  491. }
  492. // 3. 'width' and 'right' are 'auto' and 'left' is not 'auto',
  493. // then the width is shrink-to-fit. Then solve for 'right'
  494. else if (width.is_auto() && right.is_auto() && !left.is_auto()) {
  495. Rule3:
  496. auto result = calculate_shrink_to_fit_widths(box);
  497. auto available_width = solve_for_width();
  498. width = CSS::Length(min(max(result.preferred_minimum_width, available_width.to_px(box)), result.preferred_width), CSS::Length::Type::Px);
  499. right = solve_for_right();
  500. }
  501. // 4. 'left' is 'auto', 'width' and 'right' are not 'auto', then solve for 'left'
  502. else if (left.is_auto() && !width.is_auto() && !right.is_auto()) {
  503. left = solve_for_left();
  504. }
  505. // 5. 'width' is 'auto', 'left' and 'right' are not 'auto', then solve for 'width'
  506. else if (width.is_auto() && !left.is_auto() && !right.is_auto()) {
  507. width = solve_for_width();
  508. }
  509. // 6. 'right' is 'auto', 'left' and 'width' are not 'auto', then solve for 'right'
  510. else if (right.is_auto() && !left.is_auto() && !width.is_auto()) {
  511. right = solve_for_right();
  512. }
  513. return width;
  514. };
  515. auto specified_width = computed_values.width().resolved(box, width_of_containing_block_as_length).resolved(box);
  516. // 1. The tentative used width is calculated (without 'min-width' and 'max-width')
  517. auto used_width = try_compute_width(specified_width);
  518. // 2. The tentative used width is greater than 'max-width', the rules above are applied again,
  519. // but this time using the computed value of 'max-width' as the computed value for 'width'.
  520. if (!computed_values.max_width().is_none()) {
  521. auto max_width = computed_values.max_width().resolved(box, width_of_containing_block_as_length).resolved(box);
  522. if (used_width.to_px(box) > max_width.to_px(box)) {
  523. used_width = try_compute_width(max_width);
  524. }
  525. }
  526. // 3. If the resulting width is smaller than 'min-width', the rules above are applied again,
  527. // but this time using the value of 'min-width' as the computed value for 'width'.
  528. if (!computed_values.min_width().is_auto()) {
  529. auto min_width = computed_values.min_width().resolved(box, width_of_containing_block_as_length).resolved(box);
  530. if (used_width.to_px(box) < min_width.to_px(box)) {
  531. used_width = try_compute_width(min_width);
  532. }
  533. }
  534. auto& box_state = m_state.get_mutable(box);
  535. box_state.set_content_width(used_width.to_px(box));
  536. box_state.margin_left = margin_left.to_px(box);
  537. box_state.margin_right = margin_right.to_px(box);
  538. box_state.border_left = border_left;
  539. box_state.border_right = border_right;
  540. box_state.padding_left = padding_left;
  541. box_state.padding_right = padding_right;
  542. }
  543. void FormattingContext::compute_width_for_absolutely_positioned_replaced_element(ReplacedBox const& box, AvailableSpace const& available_space)
  544. {
  545. // 10.3.8 Absolutely positioned, replaced elements
  546. // The used value of 'width' is determined as for inline replaced elements.
  547. // FIXME: This const_cast is gross.
  548. const_cast<ReplacedBox&>(box).prepare_for_replaced_layout();
  549. m_state.get_mutable(box).set_content_width(compute_width_for_replaced_element(m_state, box, available_space));
  550. }
  551. // https://www.w3.org/TR/CSS22/visudet.html#abs-non-replaced-height
  552. void FormattingContext::compute_height_for_absolutely_positioned_non_replaced_element(Box const& box, AvailableSpace const& available_space)
  553. {
  554. // 10.6.4 Absolutely positioned, non-replaced elements
  555. // FIXME: The section below is partly on-spec, partly ad-hoc.
  556. auto& computed_values = box.computed_values();
  557. auto width_of_containing_block = containing_block_width_for(box);
  558. auto height_of_containing_block = available_space.height.to_px();
  559. auto width_of_containing_block_as_length = CSS::Length::make_px(width_of_containing_block);
  560. auto height_of_containing_block_as_length = CSS::Length::make_px(height_of_containing_block);
  561. auto const& computed_top = computed_values.inset().top();
  562. auto const& computed_bottom = computed_values.inset().bottom();
  563. auto const& computed_height = computed_values.height();
  564. auto const& computed_min_height = computed_values.min_height();
  565. auto const& computed_max_height = computed_values.max_height();
  566. auto used_top = computed_top.resolved(box, height_of_containing_block_as_length).resolved(box).to_px(box);
  567. auto used_bottom = computed_bottom.resolved(box, height_of_containing_block_as_length).resolved(box).to_px(box);
  568. auto tentative_height = CSS::Length::make_auto();
  569. if (!computed_height.is_auto())
  570. tentative_height = computed_values.height().resolved(box, height_of_containing_block_as_length).resolved(box);
  571. auto& box_state = m_state.get_mutable(box);
  572. box_state.margin_top = computed_values.margin().top().resolved(box, width_of_containing_block_as_length).to_px(box);
  573. box_state.margin_bottom = computed_values.margin().bottom().resolved(box, width_of_containing_block_as_length).to_px(box);
  574. box_state.border_top = computed_values.border_top().width;
  575. box_state.border_bottom = computed_values.border_bottom().width;
  576. box_state.padding_top = computed_values.padding().top().resolved(box, width_of_containing_block_as_length).to_px(box);
  577. box_state.padding_bottom = computed_values.padding().bottom().resolved(box, width_of_containing_block_as_length).to_px(box);
  578. if (computed_height.is_auto() && computed_top.is_auto() && computed_bottom.is_auto()) {
  579. tentative_height = CSS::Length(compute_auto_height_for_block_level_element(box, available_space), CSS::Length::Type::Px);
  580. }
  581. else if (computed_height.is_auto() && !computed_top.is_auto() && computed_bottom.is_auto()) {
  582. tentative_height = CSS::Length(compute_auto_height_for_block_level_element(box, available_space), CSS::Length::Type::Px);
  583. box_state.inset_bottom = height_of_containing_block - tentative_height.to_px(box) - used_top - box_state.margin_top - box_state.padding_top - box_state.border_top - box_state.margin_bottom - box_state.padding_bottom - box_state.border_bottom;
  584. }
  585. else if (computed_height.is_auto() && !computed_top.is_auto() && !computed_bottom.is_auto()) {
  586. tentative_height = CSS::Length(height_of_containing_block - used_top - box_state.margin_top - box_state.padding_top - box_state.border_top - used_bottom - box_state.margin_bottom - box_state.padding_bottom - box_state.border_bottom, CSS::Length::Type::Px);
  587. }
  588. float used_height = tentative_height.to_px(box);
  589. if (!computed_max_height.is_none())
  590. used_height = min(used_height, computed_max_height.resolved(box, height_of_containing_block_as_length).resolved(box).to_px(box));
  591. if (!computed_min_height.is_auto())
  592. used_height = max(used_height, computed_min_height.resolved(box, height_of_containing_block_as_length).resolved(box).to_px(box));
  593. box_state.set_content_height(used_height);
  594. }
  595. // NOTE: This is different from content_box_rect_in_ancestor_coordinate_space() as this does *not* follow the containing block chain up, but rather the parent() chain.
  596. static Gfx::FloatRect content_box_rect_in_static_position_ancestor_coordinate_space(Box const& box, Box const& ancestor_box, LayoutState const& state)
  597. {
  598. auto rect = content_box_rect(box, state);
  599. if (&box == &ancestor_box)
  600. return rect;
  601. for (auto const* current = box.parent(); current; current = current->parent()) {
  602. if (current == &ancestor_box)
  603. return rect;
  604. auto const& current_state = state.get(static_cast<Box const&>(*current));
  605. rect.translate_by(current_state.offset);
  606. }
  607. // If we get here, ancestor_box was not an ancestor of `box`!
  608. VERIFY_NOT_REACHED();
  609. }
  610. // https://www.w3.org/TR/css-position-3/#staticpos-rect
  611. Gfx::FloatPoint FormattingContext::calculate_static_position(Box const& box) const
  612. {
  613. // NOTE: This is very ad-hoc.
  614. // The purpose of this function is to calculate the approximate position that `box`
  615. // would have had if it were position:static.
  616. float x = 0.0f;
  617. float y = 0.0f;
  618. VERIFY(box.parent());
  619. if (box.parent()->children_are_inline()) {
  620. // We're an abspos box with inline siblings. This is gonna get messy!
  621. if (auto* sibling = box.previous_sibling()) {
  622. // Hard case: there's a previous sibling. This means there's already inline content
  623. // preceding the hypothetical static position of `box` within its containing block.
  624. // If we had been position:static, that inline content would have been wrapped in
  625. // anonymous block box, so now we get to imagine what the world might have looked like
  626. // in that scenario..
  627. // Basically, we find its last associated line box fragment and place `box` under it.
  628. // FIXME: I'm 100% sure this can be smarter, better and faster.
  629. LineBoxFragment const* last_fragment = nullptr;
  630. auto& cb_state = m_state.get(*sibling->containing_block());
  631. for (auto& line_box : cb_state.line_boxes) {
  632. for (auto& fragment : line_box.fragments()) {
  633. if (&fragment.layout_node() == sibling)
  634. last_fragment = &fragment;
  635. }
  636. }
  637. if (last_fragment) {
  638. y = last_fragment->offset().y() + last_fragment->height();
  639. }
  640. } else {
  641. // Easy case: no previous sibling, we're at the top of the containing block.
  642. }
  643. } else {
  644. // We're among block siblings, Y can be calculated easily.
  645. y = compute_box_y_position_with_respect_to_siblings(box);
  646. }
  647. auto offset_to_static_parent = content_box_rect_in_static_position_ancestor_coordinate_space(box, *box.containing_block(), m_state);
  648. return offset_to_static_parent.location().translated(x, y);
  649. }
  650. void FormattingContext::layout_absolutely_positioned_element(Box const& box, AvailableSpace const& available_space)
  651. {
  652. auto& containing_block_state = m_state.get_mutable(*box.containing_block());
  653. auto& box_state = m_state.get_mutable(box);
  654. auto width_of_containing_block = available_space.width.to_px();
  655. auto height_of_containing_block = available_space.height.to_px();
  656. auto width_of_containing_block_as_length = CSS::Length::make_px(width_of_containing_block);
  657. auto height_of_containing_block_as_length = CSS::Length::make_px(height_of_containing_block);
  658. auto specified_width = box.computed_values().width().resolved(box, width_of_containing_block_as_length).resolved(box);
  659. compute_width_for_absolutely_positioned_element(box, available_space);
  660. auto independent_formatting_context = layout_inside(box, LayoutMode::Normal, box_state.available_inner_space_or_constraints_from(available_space));
  661. compute_height_for_absolutely_positioned_element(box, available_space);
  662. box_state.margin_left = box.computed_values().margin().left().resolved(box, width_of_containing_block_as_length).to_px(box);
  663. box_state.margin_top = box.computed_values().margin().top().resolved(box, width_of_containing_block_as_length).to_px(box);
  664. box_state.margin_right = box.computed_values().margin().right().resolved(box, width_of_containing_block_as_length).to_px(box);
  665. box_state.margin_bottom = box.computed_values().margin().bottom().resolved(box, width_of_containing_block_as_length).to_px(box);
  666. box_state.border_left = box.computed_values().border_left().width;
  667. box_state.border_right = box.computed_values().border_right().width;
  668. box_state.border_top = box.computed_values().border_top().width;
  669. box_state.border_bottom = box.computed_values().border_bottom().width;
  670. auto const& computed_left = box.computed_values().inset().left();
  671. auto const& computed_right = box.computed_values().inset().right();
  672. auto const& computed_top = box.computed_values().inset().top();
  673. auto const& computed_bottom = box.computed_values().inset().bottom();
  674. box_state.inset_left = computed_left.resolved(box, width_of_containing_block_as_length).to_px(box);
  675. box_state.inset_top = computed_top.resolved(box, height_of_containing_block_as_length).to_px(box);
  676. box_state.inset_right = computed_right.resolved(box, width_of_containing_block_as_length).to_px(box);
  677. box_state.inset_bottom = computed_bottom.resolved(box, height_of_containing_block_as_length).to_px(box);
  678. if (computed_left.is_auto() && box.computed_values().width().is_auto() && computed_right.is_auto()) {
  679. if (box.computed_values().margin().left().is_auto())
  680. box_state.margin_left = 0;
  681. if (box.computed_values().margin().right().is_auto())
  682. box_state.margin_right = 0;
  683. }
  684. auto static_position = calculate_static_position(box);
  685. Gfx::FloatPoint used_offset;
  686. if (!computed_left.is_auto()) {
  687. float x_offset = box_state.inset_left
  688. + box_state.border_box_left();
  689. used_offset.set_x(x_offset + box_state.margin_left);
  690. } else if (!computed_right.is_auto()) {
  691. float x_offset = 0
  692. - box_state.inset_right
  693. - box_state.border_box_right();
  694. used_offset.set_x(width_of_containing_block + x_offset - box_state.content_width() - box_state.margin_right);
  695. } else {
  696. float x_offset = box_state.margin_box_left()
  697. + static_position.x();
  698. used_offset.set_x(x_offset);
  699. }
  700. if (!computed_top.is_auto()) {
  701. float y_offset = box_state.inset_top
  702. + box_state.border_box_top();
  703. used_offset.set_y(y_offset + box_state.margin_top);
  704. } else if (!computed_bottom.is_auto()) {
  705. float y_offset = 0
  706. - box_state.inset_bottom
  707. - box_state.border_box_bottom();
  708. used_offset.set_y(height_of_containing_block + y_offset - box_state.content_height() - box_state.margin_bottom);
  709. } else {
  710. float y_offset = box_state.margin_box_top()
  711. + static_position.y();
  712. used_offset.set_y(y_offset);
  713. }
  714. // NOTE: Absolutely positioned boxes are relative to the *padding edge* of the containing block.
  715. used_offset.translate_by(-containing_block_state.padding_left, -containing_block_state.padding_top);
  716. box_state.set_content_offset(used_offset);
  717. if (independent_formatting_context)
  718. independent_formatting_context->parent_context_did_dimension_child_root_box();
  719. }
  720. void FormattingContext::compute_height_for_absolutely_positioned_replaced_element(ReplacedBox const& box, AvailableSpace const& available_space)
  721. {
  722. // 10.6.5 Absolutely positioned, replaced elements
  723. // The used value of 'height' is determined as for inline replaced elements.
  724. m_state.get_mutable(box).set_content_height(compute_height_for_replaced_element(m_state, box, available_space));
  725. }
  726. // https://www.w3.org/TR/css-position-3/#relpos-insets
  727. void FormattingContext::compute_inset(Box const& box)
  728. {
  729. if (box.computed_values().position() != CSS::Position::Relative)
  730. return;
  731. auto resolve_two_opposing_insets = [&](CSS::LengthPercentage const& computed_start, CSS::LengthPercentage const& computed_end, float& used_start, float& used_end, float reference_for_percentage) {
  732. auto resolved_first = computed_start.resolved(box, CSS::Length::make_px(reference_for_percentage)).resolved(box);
  733. auto resolved_second = computed_end.resolved(box, CSS::Length::make_px(reference_for_percentage)).resolved(box);
  734. if (resolved_first.is_auto() && resolved_second.is_auto()) {
  735. // If opposing inset properties in an axis both compute to auto (their initial values),
  736. // their used values are zero (i.e., the boxes stay in their original position in that axis).
  737. used_start = 0;
  738. used_end = 0;
  739. } else if (resolved_first.is_auto() || resolved_second.is_auto()) {
  740. // If only one is auto, its used value becomes the negation of the other, and the box is shifted by the specified amount.
  741. if (resolved_first.is_auto()) {
  742. used_end = resolved_second.to_px(box);
  743. used_start = 0 - used_end;
  744. } else {
  745. used_start = resolved_first.to_px(box);
  746. used_end = 0 - used_start;
  747. }
  748. } else {
  749. // If neither is auto, the position is over-constrained; (with respect to the writing mode of its containing block)
  750. // the computed end side value is ignored, and its used value becomes the negation of the start side.
  751. used_start = resolved_first.to_px(box);
  752. used_end = 0 - used_start;
  753. }
  754. };
  755. auto& box_state = m_state.get_mutable(box);
  756. auto const& computed_values = box.computed_values();
  757. // FIXME: Respect the containing block's writing-mode.
  758. resolve_two_opposing_insets(computed_values.inset().left(), computed_values.inset().right(), box_state.inset_left, box_state.inset_right, containing_block_width_for(box));
  759. resolve_two_opposing_insets(computed_values.inset().top(), computed_values.inset().bottom(), box_state.inset_top, box_state.inset_bottom, containing_block_height_for(box));
  760. }
  761. float FormattingContext::calculate_fit_content_size(float min_content_size, float max_content_size, AvailableSize const& available_size) const
  762. {
  763. // If the available space in a given axis is definite, equal to clamp(min-content size, stretch-fit size, max-content size)
  764. // (i.e. max(min-content size, min(max-content size, stretch-fit size))).
  765. if (available_size.is_definite()) {
  766. // FIXME: Compute the real stretch-fit size.
  767. auto stretch_fit_size = available_size.to_px();
  768. auto s = max(min_content_size, min(max_content_size, stretch_fit_size));
  769. return s;
  770. }
  771. // When sizing under a min-content constraint, equal to the min-content size.
  772. if (available_size.is_min_content())
  773. return min_content_size;
  774. // Otherwise, equal to the max-content size in that axis.
  775. return max_content_size;
  776. }
  777. float FormattingContext::calculate_fit_content_width(Layout::Box const& box, AvailableSpace const& available_space) const
  778. {
  779. // When sizing under a min-content constraint, equal to the min-content size.
  780. // NOTE: We check this first, to avoid needlessly calculating the max-content size.
  781. if (available_space.width.is_min_content())
  782. return calculate_min_content_width(box);
  783. if (available_space.width.is_max_content())
  784. return calculate_max_content_width(box);
  785. return calculate_fit_content_size(calculate_min_content_width(box), calculate_max_content_width(box), available_space.width);
  786. }
  787. float FormattingContext::calculate_fit_content_height(Layout::Box const& box, AvailableSpace const& available_space) const
  788. {
  789. // When sizing under a min-content constraint, equal to the min-content size.
  790. // NOTE: We check this first, to avoid needlessly calculating the max-content size.
  791. if (available_space.height.is_min_content())
  792. return calculate_min_content_height(box, available_space.width);
  793. if (available_space.height.is_max_content())
  794. return calculate_max_content_height(box, available_space.width);
  795. return calculate_fit_content_size(calculate_min_content_height(box, available_space.width), calculate_max_content_height(box, available_space.width), available_space.height);
  796. }
  797. float FormattingContext::calculate_min_content_width(Layout::Box const& box) const
  798. {
  799. if (box.has_intrinsic_width())
  800. return *box.intrinsic_width();
  801. auto& root_state = m_state.m_root;
  802. auto& cache = *root_state.intrinsic_sizes.ensure(&box, [] { return adopt_own(*new LayoutState::IntrinsicSizes); });
  803. if (cache.min_content_width.has_value())
  804. return *cache.min_content_width;
  805. LayoutState throwaway_state(&m_state);
  806. auto& box_state = throwaway_state.get_mutable(box);
  807. box_state.width_constraint = SizeConstraint::MinContent;
  808. auto context = const_cast<FormattingContext*>(this)->create_independent_formatting_context_if_needed(throwaway_state, box);
  809. VERIFY(context);
  810. auto available_width = AvailableSize::make_min_content();
  811. auto available_height = AvailableSize::make_indefinite();
  812. context->run(box, LayoutMode::IntrinsicSizing, AvailableSpace(available_width, available_height));
  813. if (context->type() == FormattingContext::Type::Flex) {
  814. cache.min_content_width = box_state.content_width();
  815. } else {
  816. cache.min_content_width = context->greatest_child_width(box);
  817. }
  818. if (!isfinite(*cache.min_content_width)) {
  819. // HACK: If layout calculates a non-finite result, something went wrong. Force it to zero and log a little whine.
  820. dbgln("FIXME: Calculated non-finite min-content width for {}", box.debug_description());
  821. cache.min_content_width = 0;
  822. }
  823. return *cache.min_content_width;
  824. }
  825. float FormattingContext::calculate_max_content_width(Layout::Box const& box) const
  826. {
  827. if (box.has_intrinsic_width())
  828. return *box.intrinsic_width();
  829. auto& root_state = m_state.m_root;
  830. auto& cache = *root_state.intrinsic_sizes.ensure(&box, [] { return adopt_own(*new LayoutState::IntrinsicSizes); });
  831. if (cache.max_content_width.has_value())
  832. return *cache.max_content_width;
  833. LayoutState throwaway_state(&m_state);
  834. auto& box_state = throwaway_state.get_mutable(box);
  835. box_state.width_constraint = SizeConstraint::MaxContent;
  836. auto context = const_cast<FormattingContext*>(this)->create_independent_formatting_context_if_needed(throwaway_state, box);
  837. VERIFY(context);
  838. auto available_width = AvailableSize::make_max_content();
  839. auto available_height = AvailableSize::make_indefinite();
  840. context->run(box, LayoutMode::IntrinsicSizing, AvailableSpace(available_width, available_height));
  841. if (context->type() == FormattingContext::Type::Flex) {
  842. cache.max_content_width = box_state.content_width();
  843. } else {
  844. cache.max_content_width = context->greatest_child_width(box);
  845. }
  846. if (!isfinite(*cache.max_content_width)) {
  847. // HACK: If layout calculates a non-finite result, something went wrong. Force it to zero and log a little whine.
  848. dbgln("FIXME: Calculated non-finite max-content width for {}", box.debug_description());
  849. cache.max_content_width = 0;
  850. }
  851. return *cache.max_content_width;
  852. }
  853. float FormattingContext::calculate_min_content_height(Layout::Box const& box, AvailableSize const& available_width) const
  854. {
  855. if (box.has_intrinsic_height())
  856. return *box.intrinsic_height();
  857. auto& root_state = m_state.m_root;
  858. auto& cache = *root_state.intrinsic_sizes.ensure(&box, [] { return adopt_own(*new LayoutState::IntrinsicSizes); });
  859. if (cache.min_content_height.has_value())
  860. return *cache.min_content_height;
  861. LayoutState throwaway_state(&m_state);
  862. auto& box_state = throwaway_state.get_mutable(box);
  863. box_state.height_constraint = SizeConstraint::MinContent;
  864. auto context = const_cast<FormattingContext*>(this)->create_independent_formatting_context_if_needed(throwaway_state, box);
  865. VERIFY(context);
  866. context->run(box, LayoutMode::IntrinsicSizing, AvailableSpace(available_width, AvailableSize::make_min_content()));
  867. cache.min_content_height = context->automatic_content_height();
  868. if (!isfinite(*cache.min_content_height)) {
  869. // HACK: If layout calculates a non-finite result, something went wrong. Force it to zero and log a little whine.
  870. dbgln("FIXME: Calculated non-finite min-content height for {}", box.debug_description());
  871. cache.min_content_height = 0;
  872. }
  873. return *cache.min_content_height;
  874. }
  875. float FormattingContext::calculate_max_content_height(Layout::Box const& box, AvailableSize const& available_width) const
  876. {
  877. if (box.has_intrinsic_height())
  878. return *box.intrinsic_height();
  879. auto& root_state = m_state.m_root;
  880. auto& cache = *root_state.intrinsic_sizes.ensure(&box, [] { return adopt_own(*new LayoutState::IntrinsicSizes); });
  881. if (cache.max_content_height.has_value())
  882. return *cache.max_content_height;
  883. LayoutState throwaway_state(&m_state);
  884. auto& box_state = throwaway_state.get_mutable(box);
  885. box_state.height_constraint = SizeConstraint::MaxContent;
  886. auto context = const_cast<FormattingContext*>(this)->create_independent_formatting_context_if_needed(throwaway_state, box);
  887. VERIFY(context);
  888. context->run(box, LayoutMode::IntrinsicSizing, AvailableSpace(available_width, AvailableSize::make_max_content()));
  889. cache.max_content_height = context->automatic_content_height();
  890. if (!isfinite(*cache.max_content_height)) {
  891. // HACK: If layout calculates a non-finite result, something went wrong. Force it to zero and log a little whine.
  892. dbgln("FIXME: Calculated non-finite max-content height for {}", box.debug_description());
  893. cache.max_content_height = 0;
  894. }
  895. return *cache.max_content_height;
  896. }
  897. float FormattingContext::containing_block_width_for(Box const& box, LayoutState const& state)
  898. {
  899. auto& containing_block_state = state.get(*box.containing_block());
  900. auto& box_state = state.get(box);
  901. switch (box_state.width_constraint) {
  902. case SizeConstraint::MinContent:
  903. return 0;
  904. case SizeConstraint::MaxContent:
  905. return INFINITY;
  906. case SizeConstraint::None:
  907. return containing_block_state.content_width();
  908. }
  909. VERIFY_NOT_REACHED();
  910. }
  911. float FormattingContext::containing_block_height_for(Box const& box, LayoutState const& state)
  912. {
  913. auto& containing_block_state = state.get(*box.containing_block());
  914. auto& box_state = state.get(box);
  915. switch (box_state.height_constraint) {
  916. case SizeConstraint::MinContent:
  917. return 0;
  918. case SizeConstraint::MaxContent:
  919. return INFINITY;
  920. case SizeConstraint::None:
  921. return containing_block_state.content_height();
  922. }
  923. VERIFY_NOT_REACHED();
  924. }
  925. static Box const* previous_block_level_sibling(Box const& box)
  926. {
  927. for (auto* sibling = box.previous_sibling_of_type<Box>(); sibling; sibling = sibling->previous_sibling_of_type<Box>()) {
  928. if (sibling->display().is_block_outside())
  929. return sibling;
  930. }
  931. return nullptr;
  932. }
  933. float FormattingContext::compute_box_y_position_with_respect_to_siblings(Box const& box) const
  934. {
  935. auto const& box_state = m_state.get(box);
  936. float y = box_state.border_box_top();
  937. Vector<float> collapsible_margins;
  938. auto* relevant_sibling = previous_block_level_sibling(box);
  939. while (relevant_sibling != nullptr) {
  940. if (!relevant_sibling->is_absolutely_positioned() && !relevant_sibling->is_floating()) {
  941. auto const& relevant_sibling_state = m_state.get(*relevant_sibling);
  942. collapsible_margins.append(relevant_sibling_state.margin_bottom);
  943. // NOTE: Empty (0-height) preceding siblings have their margins collapsed with *their* preceding sibling, etc.
  944. if (relevant_sibling_state.border_box_height() > 0)
  945. break;
  946. collapsible_margins.append(relevant_sibling_state.margin_top);
  947. }
  948. relevant_sibling = previous_block_level_sibling(*relevant_sibling);
  949. }
  950. if (relevant_sibling) {
  951. // Collapse top margin with the collapsed margin(s) of preceding siblings.
  952. collapsible_margins.append(box_state.margin_top);
  953. float smallest_margin = 0;
  954. float largest_margin = 0;
  955. size_t negative_margin_count = 0;
  956. for (auto margin : collapsible_margins) {
  957. if (margin < 0)
  958. ++negative_margin_count;
  959. largest_margin = max(largest_margin, margin);
  960. smallest_margin = min(smallest_margin, margin);
  961. }
  962. float collapsed_margin = 0;
  963. if (negative_margin_count == collapsible_margins.size()) {
  964. // When all margins are negative, the size of the collapsed margin is the smallest (most negative) margin.
  965. collapsed_margin = smallest_margin;
  966. } else if (negative_margin_count > 0) {
  967. // When negative margins are involved, the size of the collapsed margin is the sum of the largest positive margin and the smallest (most negative) negative margin.
  968. collapsed_margin = largest_margin + smallest_margin;
  969. } else {
  970. // Otherwise, collapse all the adjacent margins by using only the largest one.
  971. collapsed_margin = largest_margin;
  972. }
  973. auto const& relevant_sibling_state = m_state.get(*relevant_sibling);
  974. return y + relevant_sibling_state.offset.y()
  975. + relevant_sibling_state.content_height()
  976. + relevant_sibling_state.border_box_bottom()
  977. + collapsed_margin;
  978. } else {
  979. return y + box_state.margin_top;
  980. }
  981. }
  982. // https://drafts.csswg.org/css-sizing-3/#stretch-fit-size
  983. float FormattingContext::calculate_stretch_fit_width(Box const& box, AvailableSize const& available_width) const
  984. {
  985. // The size a box would take if its outer size filled the available space in the given axis;
  986. // in other words, the stretch fit into the available space, if that is definite.
  987. // Undefined if the available space is indefinite.
  988. auto const& box_state = m_state.get(box);
  989. return available_width.to_px()
  990. - box_state.margin_left
  991. - box_state.margin_right
  992. - box_state.padding_left
  993. - box_state.padding_right
  994. - box_state.border_left
  995. - box_state.border_right;
  996. }
  997. }