FormattingContext.cpp 70 KB

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