FormattingContext.cpp 67 KB

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