FormattingContext.cpp 69 KB

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