FormattingContext.cpp 68 KB

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