FormattingContext.cpp 68 KB

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