FormattingContext.cpp 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998
  1. /*
  2. * Copyright (c) 2020-2022, Andreas Kling <andreas@ladybird.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/TableFormattingContext.h>
  16. #include <LibWeb/Layout/TextNode.h>
  17. #include <LibWeb/Layout/Viewport.h>
  18. namespace Web::Layout {
  19. FormattingContext::FormattingContext(Type type, LayoutMode layout_mode, LayoutState& state, Box const& context_box, FormattingContext* parent)
  20. : m_type(type)
  21. , m_layout_mode(layout_mode)
  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 (display.is_math_inside())
  109. // HACK: Instead of crashing, create a dummy formatting context that does nothing.
  110. return Type::InternalDummy;
  111. if (creates_block_formatting_context(box))
  112. return Type::Block;
  113. if (box.children_are_inline())
  114. return {};
  115. if (display.is_table_column() || display.is_table_row_group() || display.is_table_header_group() || display.is_table_footer_group() || display.is_table_row() || display.is_table_column_group())
  116. return {};
  117. // The box is a block container that doesn't create its own BFC.
  118. // It will be formatted by the containing BFC.
  119. if (!display.is_flow_inside()) {
  120. // HACK: Instead of crashing, create a dummy formatting context that does nothing.
  121. // FIXME: We need this for <math> elements
  122. return Type::InternalDummy;
  123. }
  124. return {};
  125. }
  126. // FIXME: This is a hack. Get rid of it.
  127. struct ReplacedFormattingContext : public FormattingContext {
  128. ReplacedFormattingContext(LayoutState& state, LayoutMode layout_mode, Box const& box)
  129. : FormattingContext(Type::Block, layout_mode, state, box)
  130. {
  131. }
  132. virtual CSSPixels automatic_content_width() const override { return 0; }
  133. virtual CSSPixels automatic_content_height() const override { return 0; }
  134. virtual void run(AvailableSpace const&) override { }
  135. };
  136. // FIXME: This is a hack. Get rid of it.
  137. struct DummyFormattingContext : public FormattingContext {
  138. DummyFormattingContext(LayoutState& state, LayoutMode layout_mode, Box const& box)
  139. : FormattingContext(Type::Block, layout_mode, state, box)
  140. {
  141. }
  142. virtual CSSPixels automatic_content_width() const override { return 0; }
  143. virtual CSSPixels automatic_content_height() const override { return 0; }
  144. virtual void run(AvailableSpace const&) override { }
  145. };
  146. OwnPtr<FormattingContext> FormattingContext::create_independent_formatting_context_if_needed(LayoutState& state, LayoutMode layout_mode, Box const& child_box)
  147. {
  148. auto type = formatting_context_type_created_by_box(child_box);
  149. if (!type.has_value())
  150. return nullptr;
  151. switch (type.value()) {
  152. case Type::Block:
  153. return make<BlockFormattingContext>(state, layout_mode, verify_cast<BlockContainer>(child_box), this);
  154. case Type::SVG:
  155. return make<SVGFormattingContext>(state, layout_mode, child_box, this);
  156. case Type::Flex:
  157. return make<FlexFormattingContext>(state, layout_mode, child_box, this);
  158. case Type::Grid:
  159. return make<GridFormattingContext>(state, layout_mode, child_box, this);
  160. case Type::Table:
  161. return make<TableFormattingContext>(state, layout_mode, child_box, this);
  162. case Type::InternalReplaced:
  163. return make<ReplacedFormattingContext>(state, layout_mode, child_box);
  164. case Type::InternalDummy:
  165. return make<DummyFormattingContext>(state, layout_mode, child_box);
  166. case Type::Inline:
  167. // IFC should always be created by a parent BFC directly.
  168. VERIFY_NOT_REACHED();
  169. break;
  170. default:
  171. VERIFY_NOT_REACHED();
  172. }
  173. }
  174. OwnPtr<FormattingContext> FormattingContext::layout_inside(Box const& child_box, LayoutMode layout_mode, AvailableSpace const& available_space)
  175. {
  176. {
  177. // OPTIMIZATION: If we're doing intrinsic sizing and `child_box` has definite size in both axes,
  178. // we don't need to layout its insides. The size is resolvable without learning
  179. // the metrics of whatever's inside the box.
  180. auto const& used_values = m_state.get(child_box);
  181. if (layout_mode == LayoutMode::IntrinsicSizing
  182. && used_values.width_constraint == SizeConstraint::None
  183. && used_values.height_constraint == SizeConstraint::None
  184. && used_values.has_definite_width()
  185. && used_values.has_definite_height()) {
  186. return nullptr;
  187. }
  188. }
  189. if (!child_box.can_have_children())
  190. return {};
  191. auto independent_formatting_context = create_independent_formatting_context_if_needed(m_state, layout_mode, child_box);
  192. if (independent_formatting_context)
  193. independent_formatting_context->run(available_space);
  194. else
  195. run(available_space);
  196. return independent_formatting_context;
  197. }
  198. CSSPixels FormattingContext::greatest_child_width(Box const& box) const
  199. {
  200. CSSPixels max_width = 0;
  201. if (box.children_are_inline()) {
  202. for (auto& line_box : m_state.get(box).line_boxes) {
  203. max_width = max(max_width, line_box.width());
  204. }
  205. } else {
  206. box.for_each_child_of_type<Box>([&](Box const& child) {
  207. if (!child.is_absolutely_positioned())
  208. max_width = max(max_width, m_state.get(child).margin_box_width());
  209. return IterationDecision::Continue;
  210. });
  211. }
  212. return max_width;
  213. }
  214. FormattingContext::ShrinkToFitResult FormattingContext::calculate_shrink_to_fit_widths(Box const& box)
  215. {
  216. return {
  217. .preferred_width = calculate_max_content_width(box),
  218. .preferred_minimum_width = calculate_min_content_width(box),
  219. };
  220. }
  221. CSSPixelSize FormattingContext::solve_replaced_size_constraint(CSSPixels input_width, CSSPixels input_height, Box const& box, AvailableSpace const& available_space) const
  222. {
  223. // 10.4 Minimum and maximum widths: 'min-width' and 'max-width'
  224. // https://www.w3.org/TR/CSS22/visudet.html#min-max-widths
  225. auto const& containing_block = *box.non_anonymous_containing_block();
  226. auto const& containing_block_state = m_state.get(containing_block);
  227. auto width_of_containing_block = containing_block_state.content_width();
  228. auto height_of_containing_block = containing_block_state.content_height();
  229. auto min_width = box.computed_values().min_width().is_auto() ? 0 : box.computed_values().min_width().to_px(box, width_of_containing_block);
  230. auto specified_max_width = should_treat_max_width_as_none(box, available_space.width) ? input_width : box.computed_values().max_width().to_px(box, width_of_containing_block);
  231. auto max_width = max(min_width, specified_max_width);
  232. auto min_height = box.computed_values().min_height().is_auto() ? 0 : box.computed_values().min_height().to_px(box, height_of_containing_block);
  233. auto specified_max_height = should_treat_max_height_as_none(box, available_space.height) ? input_height : box.computed_values().max_height().to_px(box, height_of_containing_block);
  234. auto max_height = max(min_height, specified_max_height);
  235. CSSPixelFraction aspect_ratio = *box.preferred_aspect_ratio();
  236. // These are from the "Constraint Violation" table in spec, but reordered so that each condition is
  237. // interpreted as mutually exclusive to any other.
  238. if (input_width < min_width && input_height > max_height)
  239. return { min_width, max_height };
  240. if (input_width > max_width && input_height < min_height)
  241. return { max_width, min_height };
  242. if (input_width > 0 && input_height > 0) {
  243. if (input_width > max_width && input_height > max_height && max_width / input_width <= max_height / input_height)
  244. return { max_width, max(min_height, max_width / aspect_ratio) };
  245. if (input_width > max_width && input_height > max_height && max_width / input_width > max_height / input_height)
  246. return { max(min_width, max_height * aspect_ratio), max_height };
  247. if (input_width < min_width && input_height < min_height && min_width / input_width <= min_height / input_height)
  248. return { min(max_width, min_height * aspect_ratio), min_height };
  249. if (input_width < min_width && input_height < min_height && min_width / input_width > min_height / input_height)
  250. return { min_width, min(max_height, min_width / aspect_ratio) };
  251. }
  252. if (input_width > max_width)
  253. return { max_width, max(max_width / aspect_ratio, min_height) };
  254. if (input_width < min_width)
  255. return { min_width, min(min_width / aspect_ratio, max_height) };
  256. if (input_height > max_height)
  257. return { max(max_height * aspect_ratio, min_width), max_height };
  258. if (input_height < min_height)
  259. return { min(min_height * aspect_ratio, max_width), min_height };
  260. return { input_width, input_height };
  261. }
  262. Optional<CSSPixels> FormattingContext::compute_auto_height_for_absolutely_positioned_element(Box const& box, AvailableSpace const& available_space, BeforeOrAfterInsideLayout before_or_after_inside_layout) const
  263. {
  264. // NOTE: CSS 2.2 tells us to use the "auto height for block formatting context roots" here.
  265. // That's fine as long as the box is a BFC root.
  266. if (creates_block_formatting_context(box)) {
  267. if (before_or_after_inside_layout == BeforeOrAfterInsideLayout::Before)
  268. return {};
  269. return compute_auto_height_for_block_formatting_context_root(box);
  270. }
  271. // NOTE: For anything else, we use the fit-content height.
  272. // This should eventually be replaced by the new absolute positioning model:
  273. // https://www.w3.org/TR/css-position-3/#abspos-layout
  274. return calculate_fit_content_height(box, m_state.get(box).available_inner_space_or_constraints_from(available_space));
  275. }
  276. // https://www.w3.org/TR/CSS22/visudet.html#root-height
  277. CSSPixels FormattingContext::compute_auto_height_for_block_formatting_context_root(Box const& root) const
  278. {
  279. // 10.6.7 'Auto' heights for block formatting context roots
  280. Optional<CSSPixels> top;
  281. Optional<CSSPixels> bottom;
  282. if (root.children_are_inline()) {
  283. // If it only has inline-level children, the height is the distance between
  284. // the top content edge and the bottom of the bottommost line box.
  285. auto const& line_boxes = m_state.get(root).line_boxes;
  286. top = 0;
  287. if (!line_boxes.is_empty())
  288. bottom = line_boxes.last().bottom();
  289. } else {
  290. // If it has block-level children, the height is the distance between
  291. // the top margin-edge of the topmost block-level child box
  292. // and the bottom margin-edge of the bottommost block-level child box.
  293. root.for_each_child_of_type<Box>([&](Layout::Box& child_box) {
  294. // Absolutely positioned children are ignored,
  295. // and relatively positioned boxes are considered without their offset.
  296. // Note that the child box may be an anonymous block box.
  297. if (child_box.is_absolutely_positioned())
  298. return IterationDecision::Continue;
  299. // FIXME: This doesn't look right.
  300. if ((root.computed_values().overflow_y() == CSS::Overflow::Visible) && child_box.is_floating())
  301. return IterationDecision::Continue;
  302. auto const& child_box_state = m_state.get(child_box);
  303. CSSPixels child_box_top = child_box_state.offset.y() - child_box_state.margin_box_top();
  304. CSSPixels child_box_bottom = child_box_state.offset.y() + child_box_state.content_height() + child_box_state.margin_box_bottom();
  305. if (!top.has_value() || child_box_top < top.value())
  306. top = child_box_top;
  307. if (!bottom.has_value() || child_box_bottom > bottom.value())
  308. bottom = child_box_bottom;
  309. return IterationDecision::Continue;
  310. });
  311. }
  312. // In addition, if the element has any floating descendants
  313. // whose bottom margin edge is below the element's bottom content edge,
  314. // then the height is increased to include those edges.
  315. for (auto floating_box : m_state.get(root).floating_descendants()) {
  316. // NOTE: Floating box coordinates are relative to their own containing block,
  317. // which may or may not be the BFC root.
  318. auto margin_box = margin_box_rect_in_ancestor_coordinate_space(*floating_box, root);
  319. CSSPixels floating_box_bottom_margin_edge = margin_box.bottom();
  320. if (!bottom.has_value() || floating_box_bottom_margin_edge > bottom.value())
  321. bottom = floating_box_bottom_margin_edge;
  322. }
  323. return max(CSSPixels(0.0f), bottom.value_or(0) - top.value_or(0));
  324. }
  325. // 17.5.2 Table width algorithms: the 'table-layout' property
  326. // https://www.w3.org/TR/CSS22/tables.html#width-layout
  327. CSSPixels FormattingContext::compute_table_box_width_inside_table_wrapper(Box const& box, AvailableSpace const& available_space)
  328. {
  329. // Table wrapper width should be equal to width of table box it contains
  330. auto const& computed_values = box.computed_values();
  331. auto width_of_containing_block = available_space.width.to_px_or_zero();
  332. auto zero_value = CSS::Length::make_px(0);
  333. auto margin_left = computed_values.margin().left().resolved(box, width_of_containing_block);
  334. auto margin_right = computed_values.margin().right().resolved(box, width_of_containing_block);
  335. // If 'margin-left', or 'margin-right' are computed as 'auto', their used value is '0'.
  336. if (margin_left.is_auto())
  337. margin_left = zero_value;
  338. if (margin_right.is_auto())
  339. margin_right = zero_value;
  340. // table-wrapper can't have borders or paddings but it might have margin taken from table-root.
  341. auto available_width = width_of_containing_block - margin_left.to_px(box) - margin_right.to_px(box);
  342. Optional<Box const&> table_box;
  343. box.for_each_in_subtree_of_type<Box>([&](Box const& child_box) {
  344. if (child_box.display().is_table_inside()) {
  345. table_box = child_box;
  346. return TraversalDecision::Break;
  347. }
  348. return TraversalDecision::Continue;
  349. });
  350. VERIFY(table_box.has_value());
  351. LayoutState throwaway_state(&m_state);
  352. auto& table_box_state = throwaway_state.get_mutable(*table_box);
  353. auto const& table_box_computed_values = table_box->computed_values();
  354. table_box_state.border_left = table_box_computed_values.border_left().width;
  355. table_box_state.border_right = table_box_computed_values.border_right().width;
  356. auto context = make<TableFormattingContext>(throwaway_state, LayoutMode::IntrinsicSizing, *table_box, this);
  357. context->run_until_width_calculation(m_state.get(*table_box).available_inner_space_or_constraints_from(available_space));
  358. auto table_used_width = throwaway_state.get(*table_box).border_box_width();
  359. return available_space.width.is_definite() ? min(table_used_width, available_width) : table_used_width;
  360. }
  361. // 17.5.3 Table height algorithms
  362. // https://www.w3.org/TR/CSS22/tables.html#height-layout
  363. CSSPixels FormattingContext::compute_table_box_height_inside_table_wrapper(Box const& box, AvailableSpace const& available_space)
  364. {
  365. // Table wrapper height should be equal to height of table box it contains
  366. auto const& computed_values = box.computed_values();
  367. auto width_of_containing_block = available_space.width.to_px_or_zero();
  368. auto height_of_containing_block = available_space.height.to_px_or_zero();
  369. auto zero_value = CSS::Length::make_px(0);
  370. auto margin_top = computed_values.margin().top().resolved(box, width_of_containing_block);
  371. auto margin_bottom = computed_values.margin().bottom().resolved(box, width_of_containing_block);
  372. // If 'margin-top', or 'margin-top' are computed as 'auto', their used value is '0'.
  373. if (margin_top.is_auto())
  374. margin_top = zero_value;
  375. if (margin_bottom.is_auto())
  376. margin_bottom = zero_value;
  377. // table-wrapper can't have borders or paddings but it might have margin taken from table-root.
  378. auto available_height = height_of_containing_block - margin_top.to_px(box) - margin_bottom.to_px(box);
  379. LayoutState throwaway_state(&m_state);
  380. auto context = create_independent_formatting_context_if_needed(throwaway_state, LayoutMode::IntrinsicSizing, box);
  381. VERIFY(context);
  382. context->run(m_state.get(box).available_inner_space_or_constraints_from(available_space));
  383. Optional<Box const&> table_box;
  384. box.for_each_in_subtree_of_type<Box>([&](Box const& child_box) {
  385. if (child_box.display().is_table_inside()) {
  386. table_box = child_box;
  387. return TraversalDecision::Break;
  388. }
  389. return TraversalDecision::Continue;
  390. });
  391. VERIFY(table_box.has_value());
  392. auto table_used_height = throwaway_state.get(*table_box).border_box_height();
  393. return available_space.height.is_definite() ? min(table_used_height, available_height) : table_used_height;
  394. }
  395. // 10.3.2 Inline, replaced elements, https://www.w3.org/TR/CSS22/visudet.html#inline-replaced-width
  396. CSSPixels FormattingContext::tentative_width_for_replaced_element(Box const& box, CSS::Size const& computed_width, AvailableSpace const& available_space) const
  397. {
  398. // Treat percentages of indefinite containing block widths as 0 (the initial width).
  399. if (computed_width.is_percentage() && !m_state.get(*box.containing_block()).has_definite_width())
  400. return 0;
  401. auto computed_height = should_treat_height_as_auto(box, available_space) ? CSS::Size::make_auto() : box.computed_values().height();
  402. CSSPixels used_width = 0;
  403. if (computed_width.is_auto()) {
  404. used_width = computed_width.to_px(box, available_space.width.to_px_or_zero());
  405. } else {
  406. used_width = calculate_inner_width(box, available_space.width, computed_width);
  407. }
  408. // If 'height' and 'width' both have computed values of 'auto' and the element also has an intrinsic width,
  409. // then that intrinsic width is the used value of 'width'.
  410. if (computed_height.is_auto() && computed_width.is_auto() && box.has_natural_width())
  411. return box.natural_width().value();
  412. // If 'height' and 'width' both have computed values of 'auto' and the element has no intrinsic width,
  413. // but does have an intrinsic height and intrinsic ratio;
  414. // or if 'width' has a computed value of 'auto',
  415. // 'height' has some other computed value, and the element does have an intrinsic ratio; then the used value of 'width' is:
  416. //
  417. // (used height) * (intrinsic ratio)
  418. if ((computed_height.is_auto() && computed_width.is_auto() && !box.has_natural_width() && box.has_natural_height() && box.has_preferred_aspect_ratio())
  419. || (computed_width.is_auto() && !computed_height.is_auto() && box.has_preferred_aspect_ratio())) {
  420. return compute_height_for_replaced_element(box, available_space) * box.preferred_aspect_ratio().value();
  421. }
  422. // If 'height' and 'width' both have computed values of 'auto' and the element has an intrinsic ratio but no intrinsic height or width,
  423. // 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
  424. // depend on the replaced element's width, then the used value of 'width' is calculated from the constraint equation used for block-level,
  425. // non-replaced elements in normal flow.
  426. if (computed_height.is_auto() && computed_width.is_auto() && !box.has_natural_width() && !box.has_natural_height() && box.has_preferred_aspect_ratio()) {
  427. return calculate_stretch_fit_width(box, available_space.width);
  428. }
  429. // 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'.
  430. if (computed_width.is_auto() && box.has_natural_width())
  431. return box.natural_width().value();
  432. // 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.
  433. // 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.
  434. if (computed_width.is_auto())
  435. return 300;
  436. return used_width;
  437. }
  438. void FormattingContext::compute_width_for_absolutely_positioned_element(Box const& box, AvailableSpace const& available_space)
  439. {
  440. if (box_is_sized_as_replaced_element(box))
  441. compute_width_for_absolutely_positioned_replaced_element(box, available_space);
  442. else
  443. compute_width_for_absolutely_positioned_non_replaced_element(box, available_space);
  444. }
  445. void FormattingContext::compute_height_for_absolutely_positioned_element(Box const& box, AvailableSpace const& available_space, BeforeOrAfterInsideLayout before_or_after_inside_layout)
  446. {
  447. if (box_is_sized_as_replaced_element(box))
  448. compute_height_for_absolutely_positioned_replaced_element(box, available_space, before_or_after_inside_layout);
  449. else
  450. compute_height_for_absolutely_positioned_non_replaced_element(box, available_space, before_or_after_inside_layout);
  451. }
  452. CSSPixels FormattingContext::compute_width_for_replaced_element(Box const& box, AvailableSpace const& available_space) const
  453. {
  454. // 10.3.4 Block-level, replaced elements in normal flow...
  455. // 10.3.2 Inline, replaced elements
  456. auto zero_value = CSS::Length::make_px(0);
  457. auto width_of_containing_block = available_space.width.to_px_or_zero();
  458. auto computed_width = should_treat_width_as_auto(box, available_space) ? CSS::Size::make_auto() : box.computed_values().width();
  459. auto computed_height = should_treat_height_as_auto(box, available_space) ? CSS::Size::make_auto() : box.computed_values().height();
  460. // 1. The tentative used width is calculated (without 'min-width' and 'max-width')
  461. auto used_width = tentative_width_for_replaced_element(box, computed_width, available_space);
  462. if (computed_width.is_auto() && computed_height.is_auto() && box.has_preferred_aspect_ratio()) {
  463. CSSPixels w = used_width;
  464. CSSPixels h = tentative_height_for_replaced_element(box, computed_height, available_space);
  465. used_width = solve_replaced_size_constraint(w, h, box, available_space).width();
  466. return used_width;
  467. }
  468. // 2. The tentative used width is greater than 'max-width', the rules above are applied again,
  469. // but this time using the computed value of 'max-width' as the computed value for 'width'.
  470. if (!should_treat_max_width_as_none(box, available_space.width)) {
  471. auto const& computed_max_width = box.computed_values().max_width();
  472. if (used_width > computed_max_width.to_px(box, width_of_containing_block)) {
  473. used_width = tentative_width_for_replaced_element(box, computed_max_width, available_space);
  474. }
  475. }
  476. // 3. If the resulting width is smaller than 'min-width', the rules above are applied again,
  477. // but this time using the value of 'min-width' as the computed value for 'width'.
  478. auto computed_min_width = box.computed_values().min_width();
  479. if (!computed_min_width.is_auto()) {
  480. if (used_width < computed_min_width.to_px(box, width_of_containing_block)) {
  481. used_width = tentative_width_for_replaced_element(box, computed_min_width, available_space);
  482. }
  483. }
  484. return used_width;
  485. }
  486. // 10.6.2 Inline replaced elements, block-level replaced elements in normal flow, 'inline-block' replaced elements in normal flow and floating replaced elements
  487. // https://www.w3.org/TR/CSS22/visudet.html#inline-replaced-height
  488. CSSPixels FormattingContext::tentative_height_for_replaced_element(Box const& box, CSS::Size const& computed_height, AvailableSpace const& available_space) const
  489. {
  490. // If 'height' and 'width' both have computed values of 'auto' and the element also has
  491. // an intrinsic height, then that intrinsic height is the used value of 'height'.
  492. if (should_treat_width_as_auto(box, available_space) && should_treat_height_as_auto(box, available_space) && box.has_natural_height())
  493. return box.natural_height().value();
  494. // Otherwise, if 'height' has a computed value of 'auto', and the element has an intrinsic ratio then the used value of 'height' is:
  495. //
  496. // (used width) / (intrinsic ratio)
  497. if (computed_height.is_auto() && box.has_preferred_aspect_ratio())
  498. return m_state.get(box).content_width() / box.preferred_aspect_ratio().value();
  499. // 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'.
  500. if (computed_height.is_auto() && box.has_natural_height())
  501. return box.natural_height().value();
  502. // Otherwise, if 'height' has a computed value of 'auto', but none of the conditions above are met,
  503. // 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,
  504. // and has a width not greater than the device width.
  505. if (computed_height.is_auto())
  506. return 150;
  507. // FIXME: Handle cases when available_space is not definite.
  508. return calculate_inner_height(box, available_space.height, computed_height);
  509. }
  510. CSSPixels FormattingContext::compute_height_for_replaced_element(Box const& box, AvailableSpace const& available_space) const
  511. {
  512. // 10.6.2 Inline replaced elements
  513. // 10.6.4 Block-level replaced elements in normal flow
  514. // 10.6.6 Floating replaced elements
  515. // 10.6.10 'inline-block' replaced elements in normal flow
  516. auto height_of_containing_block = m_state.get(*box.non_anonymous_containing_block()).content_height();
  517. auto computed_width = should_treat_width_as_auto(box, available_space) ? CSS::Size::make_auto() : box.computed_values().width();
  518. auto computed_height = should_treat_height_as_auto(box, available_space) ? CSS::Size::make_auto() : box.computed_values().height();
  519. // 1. The tentative used height is calculated (without 'min-height' and 'max-height')
  520. CSSPixels used_height = tentative_height_for_replaced_element(box, computed_height, available_space);
  521. // However, for replaced elements with both 'width' and 'height' computed as 'auto',
  522. // use the algorithm under 'Minimum and maximum widths'
  523. // https://www.w3.org/TR/CSS22/visudet.html#min-max-widths
  524. // to find the used width and height.
  525. if (computed_width.is_auto() && computed_height.is_auto() && box.has_preferred_aspect_ratio()) {
  526. CSSPixels w = tentative_width_for_replaced_element(box, computed_width, available_space);
  527. CSSPixels h = used_height;
  528. used_height = solve_replaced_size_constraint(w, h, box, available_space).height();
  529. return used_height;
  530. }
  531. // 2. If this tentative height is greater than 'max-height', the rules above are applied again,
  532. // but this time using the value of 'max-height' as the computed value for 'height'.
  533. if (!should_treat_max_height_as_none(box, available_space.height)) {
  534. auto const& computed_max_height = box.computed_values().max_height();
  535. if (used_height > computed_max_height.to_px(box, height_of_containing_block)) {
  536. used_height = tentative_height_for_replaced_element(box, computed_max_height, available_space);
  537. }
  538. }
  539. // 3. If the resulting height is smaller than 'min-height', the rules above are applied again,
  540. // but this time using the value of 'min-height' as the computed value for 'height'.
  541. auto computed_min_height = box.computed_values().min_height();
  542. if (!computed_min_height.is_auto()) {
  543. if (used_height < computed_min_height.to_px(box, height_of_containing_block)) {
  544. used_height = tentative_height_for_replaced_element(box, computed_min_height, available_space);
  545. }
  546. }
  547. return used_height;
  548. }
  549. void FormattingContext::compute_width_for_absolutely_positioned_non_replaced_element(Box const& box, AvailableSpace const& available_space)
  550. {
  551. auto width_of_containing_block = available_space.width.to_px_or_zero();
  552. auto const& computed_values = box.computed_values();
  553. auto zero_value = CSS::Length::make_px(0);
  554. auto& box_state = m_state.get_mutable(box);
  555. auto margin_left = CSS::Length::make_auto();
  556. auto margin_right = CSS::Length::make_auto();
  557. auto const border_left = computed_values.border_left().width;
  558. auto const border_right = computed_values.border_right().width;
  559. auto const padding_left = box_state.padding_left;
  560. auto const padding_right = box_state.padding_right;
  561. auto computed_left = computed_values.inset().left();
  562. auto computed_right = computed_values.inset().right();
  563. auto left = computed_values.inset().left().to_px(box, width_of_containing_block);
  564. auto right = computed_values.inset().right().to_px(box, width_of_containing_block);
  565. auto try_compute_width = [&](CSS::Length const& a_width) {
  566. margin_left = computed_values.margin().left().resolved(box, width_of_containing_block);
  567. margin_right = computed_values.margin().right().resolved(box, width_of_containing_block);
  568. auto width = a_width;
  569. auto solve_for_left = [&] {
  570. 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;
  571. };
  572. auto solve_for_width = [&] {
  573. 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));
  574. };
  575. auto solve_for_right = [&] {
  576. 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);
  577. };
  578. // If all three of 'left', 'width', and 'right' are 'auto':
  579. if (computed_left.is_auto() && width.is_auto() && computed_right.is_auto()) {
  580. // First set any 'auto' values for 'margin-left' and 'margin-right' to 0.
  581. if (margin_left.is_auto())
  582. margin_left = CSS::Length::make_px(0);
  583. if (margin_right.is_auto())
  584. margin_right = CSS::Length::make_px(0);
  585. // Then, if the 'direction' property of the element establishing the static-position containing block
  586. // is 'ltr' set 'left' to the static position and apply rule number three below;
  587. // otherwise, set 'right' to the static position and apply rule number one below.
  588. // NOTE: As with compute_height_for_absolutely_positioned_non_replaced_element, we actually apply these
  589. // steps in the opposite order since the static position may depend on the width of the box.
  590. auto result = calculate_shrink_to_fit_widths(box);
  591. auto available_width = solve_for_width();
  592. CSSPixels content_width = min(max(result.preferred_minimum_width, available_width.to_px(box)), result.preferred_width);
  593. width = CSS::Length::make_px(content_width);
  594. m_state.get_mutable(box).set_content_width(content_width);
  595. auto static_position = m_state.get(box).static_position();
  596. left = static_position.x();
  597. right = solve_for_right();
  598. }
  599. // If none of the three is auto:
  600. if (!computed_left.is_auto() && !width.is_auto() && !computed_right.is_auto()) {
  601. // If both margin-left and margin-right are auto,
  602. // solve the equation under the extra constraint that the two margins get equal values
  603. // FIXME: unless this would make them negative, in which case when direction of the containing block is ltr (rtl), set margin-left (margin-right) to 0 and solve for margin-right (margin-left).
  604. auto size_available_for_margins = width_of_containing_block - border_left - padding_left - width.to_px(box) - padding_right - border_right - left - right;
  605. if (margin_left.is_auto() && margin_right.is_auto()) {
  606. margin_left = CSS::Length::make_px(size_available_for_margins / 2);
  607. margin_right = CSS::Length::make_px(size_available_for_margins / 2);
  608. return width;
  609. }
  610. // If one of margin-left or margin-right is auto, solve the equation for that value.
  611. if (margin_left.is_auto()) {
  612. margin_left = CSS::Length::make_px(size_available_for_margins);
  613. return width;
  614. }
  615. if (margin_right.is_auto()) {
  616. margin_right = CSS::Length::make_px(size_available_for_margins);
  617. return width;
  618. }
  619. // If the values are over-constrained, ignore the value for left
  620. // (in case the direction property of the containing block is rtl)
  621. // or right (in case direction is ltr) and solve for that value.
  622. // NOTE: At this point we *are* over-constrained since none of margin-left, left, width, right, or margin-right are auto.
  623. // FIXME: Check direction.
  624. right = solve_for_right();
  625. return width;
  626. }
  627. if (margin_left.is_auto())
  628. margin_left = CSS::Length::make_px(0);
  629. if (margin_right.is_auto())
  630. margin_right = CSS::Length::make_px(0);
  631. // 1. 'left' and 'width' are 'auto' and 'right' is not 'auto',
  632. // then the width is shrink-to-fit. Then solve for 'left'
  633. if (computed_left.is_auto() && width.is_auto() && !computed_right.is_auto()) {
  634. auto result = calculate_shrink_to_fit_widths(box);
  635. auto available_width = solve_for_width();
  636. width = CSS::Length::make_px(min(max(result.preferred_minimum_width, available_width.to_px(box)), result.preferred_width));
  637. left = solve_for_left();
  638. }
  639. // 2. 'left' and 'right' are 'auto' and 'width' is not 'auto',
  640. // then if the 'direction' property of the element establishing
  641. // the static-position containing block is 'ltr' set 'left'
  642. // to the static position, otherwise set 'right' to the static position.
  643. // Then solve for 'left' (if 'direction is 'rtl') or 'right' (if 'direction' is 'ltr').
  644. else if (computed_left.is_auto() && computed_right.is_auto() && !width.is_auto()) {
  645. // FIXME: Check direction
  646. auto static_position = m_state.get(box).static_position();
  647. left = static_position.x();
  648. right = solve_for_right();
  649. }
  650. // 3. 'width' and 'right' are 'auto' and 'left' is not 'auto',
  651. // then the width is shrink-to-fit. Then solve for 'right'
  652. else if (width.is_auto() && computed_right.is_auto() && !computed_left.is_auto()) {
  653. auto result = calculate_shrink_to_fit_widths(box);
  654. auto available_width = solve_for_width();
  655. width = CSS::Length::make_px(min(max(result.preferred_minimum_width, available_width.to_px(box)), result.preferred_width));
  656. right = solve_for_right();
  657. }
  658. // 4. 'left' is 'auto', 'width' and 'right' are not 'auto', then solve for 'left'
  659. else if (computed_left.is_auto() && !width.is_auto() && !computed_right.is_auto()) {
  660. left = solve_for_left();
  661. }
  662. // 5. 'width' is 'auto', 'left' and 'right' are not 'auto', then solve for 'width'
  663. else if (width.is_auto() && !computed_left.is_auto() && !computed_right.is_auto()) {
  664. width = solve_for_width();
  665. }
  666. // 6. 'right' is 'auto', 'left' and 'width' are not 'auto', then solve for 'right'
  667. else if (computed_right.is_auto() && !computed_left.is_auto() && !width.is_auto()) {
  668. right = solve_for_right();
  669. }
  670. return width;
  671. };
  672. // 1. The tentative used width is calculated (without 'min-width' and 'max-width')
  673. auto used_width = try_compute_width([&] {
  674. if (is<TableWrapper>(box))
  675. return CSS::Length::make_px(compute_table_box_width_inside_table_wrapper(box, available_space));
  676. if (computed_values.width().is_auto())
  677. return CSS::Length::make_auto();
  678. return CSS::Length::make_px(calculate_inner_width(box, available_space.width, computed_values.width()));
  679. }());
  680. // 2. The tentative used width is greater than 'max-width', the rules above are applied again,
  681. // but this time using the computed value of 'max-width' as the computed value for 'width'.
  682. if (!should_treat_max_width_as_none(box, available_space.width)) {
  683. auto max_width = calculate_inner_width(box, available_space.width, computed_values.max_width());
  684. if (used_width.to_px(box) > max_width) {
  685. used_width = try_compute_width(CSS::Length::make_px(max_width));
  686. }
  687. }
  688. // 3. If the resulting width is smaller than 'min-width', the rules above are applied again,
  689. // but this time using the value of 'min-width' as the computed value for 'width'.
  690. if (!computed_values.min_width().is_auto()) {
  691. auto min_width = calculate_inner_width(box, available_space.width, computed_values.min_width());
  692. if (used_width.to_px(box) < min_width) {
  693. used_width = try_compute_width(CSS::Length::make_px(min_width));
  694. }
  695. }
  696. box_state.set_content_width(used_width.to_px(box));
  697. box_state.inset_left = left;
  698. box_state.inset_right = right;
  699. box_state.margin_left = margin_left.to_px(box);
  700. box_state.margin_right = margin_right.to_px(box);
  701. }
  702. void FormattingContext::compute_width_for_absolutely_positioned_replaced_element(Box const& box, AvailableSpace const& available_space)
  703. {
  704. // 10.3.8 Absolutely positioned, replaced elements
  705. // In this case, section 10.3.7 applies up through and including the constraint equation,
  706. // but the rest of section 10.3.7 is replaced by the following rules:
  707. // 1. The used value of 'width' is determined as for inline replaced elements.
  708. if (is<ReplacedBox>(box)) {
  709. // FIXME: This const_cast is gross.
  710. static_cast<ReplacedBox&>(const_cast<Box&>(box)).prepare_for_replaced_layout();
  711. }
  712. auto width = compute_width_for_replaced_element(box, available_space);
  713. auto width_of_containing_block = available_space.width.to_px_or_zero();
  714. auto available = width_of_containing_block - width;
  715. auto const& computed_values = box.computed_values();
  716. auto left = computed_values.inset().left();
  717. auto margin_left = computed_values.margin().left();
  718. auto right = computed_values.inset().right();
  719. auto margin_right = computed_values.margin().right();
  720. auto static_position = m_state.get(box).static_position();
  721. auto to_px = [&](const CSS::LengthPercentage& l) {
  722. return l.to_px(box, width_of_containing_block);
  723. };
  724. // If 'margin-left' or 'margin-right' is specified as 'auto' its used value is determined by the rules below.
  725. // 2. If both 'left' and 'right' have the value 'auto', then if the 'direction' property of the
  726. // element establishing the static-position containing block is 'ltr', set 'left' to the static
  727. // position; else if 'direction' is 'rtl', set 'right' to the static position.
  728. if (left.is_auto() && right.is_auto()) {
  729. left = CSS::Length::make_px(static_position.x());
  730. }
  731. // 3. If 'left' or 'right' are 'auto', replace any 'auto' on 'margin-left' or 'margin-right' with '0'.
  732. if (left.is_auto() || right.is_auto()) {
  733. if (margin_left.is_auto())
  734. margin_left = CSS::Length::make_px(0);
  735. if (margin_right.is_auto())
  736. margin_right = CSS::Length::make_px(0);
  737. }
  738. // 4. If at this point both 'margin-left' and 'margin-right' are still 'auto', solve the equation
  739. // under the extra constraint that the two margins must get equal values, unless this would make
  740. // them negative, in which case when the direction of the containing block is 'ltr' ('rtl'),
  741. // set 'margin-left' ('margin-right') to zero and solve for 'margin-right' ('margin-left').
  742. if (margin_left.is_auto() && margin_right.is_auto()) {
  743. auto remainder = available - to_px(left) - to_px(right);
  744. if (remainder < 0) {
  745. margin_left = CSS::Length::make_px(0);
  746. margin_right = CSS::Length::make_px(0);
  747. } else {
  748. margin_left = CSS::Length::make_px(remainder / 2);
  749. margin_right = CSS::Length::make_px(remainder / 2);
  750. }
  751. }
  752. // 5. If at this point there is an 'auto' left, solve the equation for that value.
  753. if (left.is_auto()) {
  754. left = CSS::Length::make_px(available - to_px(right) - to_px(margin_left) - to_px(margin_right));
  755. } else if (right.is_auto()) {
  756. right = CSS::Length::make_px(available - to_px(left) - to_px(margin_left) - to_px(margin_right));
  757. } else if (margin_left.is_auto()) {
  758. margin_left = CSS::Length::make_px(available - to_px(left) - to_px(right) - to_px(margin_right));
  759. } else if (margin_right.is_auto()) {
  760. margin_right = CSS::Length::make_px(available - to_px(left) - to_px(margin_left) - to_px(right));
  761. }
  762. // 6. If at this point the values are over-constrained, ignore the value for either 'left'
  763. // (in case the 'direction' property of the containing block is 'rtl') or 'right'
  764. // (in case 'direction' is 'ltr') and solve for that value.
  765. if (0 != available - to_px(left) - to_px(right) - to_px(margin_left) - to_px(margin_right)) {
  766. right = CSS::Length::make_px(available - to_px(left) - to_px(margin_left) - to_px(margin_right));
  767. }
  768. auto& box_state = m_state.get_mutable(box);
  769. box_state.inset_left = to_px(left);
  770. box_state.inset_right = to_px(right);
  771. box_state.margin_left = to_px(margin_left);
  772. box_state.margin_right = to_px(margin_right);
  773. box_state.set_content_width(width);
  774. }
  775. // https://drafts.csswg.org/css-position-3/#abs-non-replaced-height
  776. void FormattingContext::compute_height_for_absolutely_positioned_non_replaced_element(Box const& box, AvailableSpace const& available_space, BeforeOrAfterInsideLayout before_or_after_inside_layout)
  777. {
  778. // 5.3. The Height Of Absolutely Positioned, Non-Replaced Elements
  779. // For absolutely positioned elements, the used values of the vertical dimensions must satisfy this constraint:
  780. // top + margin-top + border-top-width + padding-top + height + padding-bottom + border-bottom-width + margin-bottom + bottom = height of containing block
  781. // NOTE: This function is called twice: both before and after inside layout.
  782. // In the before pass, if it turns out we need the automatic height of the box, we abort these steps.
  783. // This allows the box to retain an indefinite height from the perspective of inside layout.
  784. auto apply_min_max_height_constraints = [this, &box, &available_space](CSS::Length unconstrained_height) -> CSS::Length {
  785. auto const& computed_min_height = box.computed_values().min_height();
  786. auto const& computed_max_height = box.computed_values().max_height();
  787. auto constrained_height = unconstrained_height;
  788. if (!computed_max_height.is_none()) {
  789. auto inner_max_height = calculate_inner_height(box, available_space.height, computed_max_height);
  790. if (inner_max_height < constrained_height.to_px(box))
  791. constrained_height = CSS::Length::make_px(inner_max_height);
  792. }
  793. if (!computed_min_height.is_auto()) {
  794. auto inner_min_height = calculate_inner_height(box, available_space.height, computed_min_height);
  795. if (inner_min_height > constrained_height.to_px(box))
  796. constrained_height = CSS::Length::make_px(inner_min_height);
  797. }
  798. return constrained_height;
  799. };
  800. auto margin_top = box.computed_values().margin().top();
  801. auto margin_bottom = box.computed_values().margin().bottom();
  802. auto top = box.computed_values().inset().top();
  803. auto bottom = box.computed_values().inset().bottom();
  804. auto width_of_containing_block = available_space.width.to_px_or_zero();
  805. auto height_of_containing_block = available_space.height.to_px_or_zero();
  806. enum class ClampToZero {
  807. No,
  808. Yes,
  809. };
  810. auto& state = m_state.get(box);
  811. auto try_compute_height = [&](CSS::Length height) -> CSS::Length {
  812. auto solve_for = [&](CSS::Length length, ClampToZero clamp_to_zero = ClampToZero::No) {
  813. auto unclamped_value = height_of_containing_block
  814. - top.to_px(box, height_of_containing_block)
  815. - margin_top.to_px(box, width_of_containing_block)
  816. - box.computed_values().border_top().width
  817. - state.padding_top
  818. - apply_min_max_height_constraints(height).to_px(box)
  819. - state.padding_bottom
  820. - box.computed_values().border_bottom().width
  821. - margin_bottom.to_px(box, width_of_containing_block)
  822. - bottom.to_px(box, height_of_containing_block)
  823. + length.to_px(box);
  824. if (clamp_to_zero == ClampToZero::Yes)
  825. return CSS::Length::make_px(max(CSSPixels(0), unclamped_value));
  826. return CSS::Length::make_px(unclamped_value);
  827. };
  828. auto solve_for_top = [&] {
  829. top = solve_for(top.resolved(box, height_of_containing_block));
  830. };
  831. auto solve_for_bottom = [&] {
  832. bottom = solve_for(bottom.resolved(box, height_of_containing_block));
  833. };
  834. auto solve_for_height = [&] {
  835. height = solve_for(height, ClampToZero::Yes);
  836. };
  837. auto solve_for_margin_top = [&] {
  838. margin_top = solve_for(margin_top.resolved(box, width_of_containing_block));
  839. };
  840. auto solve_for_margin_bottom = [&] {
  841. margin_bottom = solve_for(margin_bottom.resolved(box, width_of_containing_block));
  842. };
  843. auto solve_for_margin_top_and_margin_bottom = [&] {
  844. 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);
  845. margin_top = CSS::Length::make_px(remainder / 2);
  846. margin_bottom = CSS::Length::make_px(remainder / 2);
  847. };
  848. // If all three of top, height, and bottom are auto:
  849. if (top.is_auto() && height.is_auto() && bottom.is_auto()) {
  850. // First set any auto values for margin-top and margin-bottom to 0,
  851. if (margin_top.is_auto())
  852. margin_top = CSS::Length::make_px(0);
  853. if (margin_bottom.is_auto())
  854. margin_bottom = CSS::Length::make_px(0);
  855. // then set top to the static position,
  856. // and finally apply rule number three below.
  857. // NOTE: We actually perform these two steps in the opposite order,
  858. // because the static position may depend on the height of the box (due to alignment properties).
  859. auto maybe_height = compute_auto_height_for_absolutely_positioned_element(box, available_space, before_or_after_inside_layout);
  860. if (!maybe_height.has_value())
  861. return height;
  862. height = CSS::Length::make_px(maybe_height.value());
  863. auto constrained_height = apply_min_max_height_constraints(height);
  864. m_state.get_mutable(box).set_content_height(constrained_height.to_px(box));
  865. auto static_position = m_state.get(box).static_position();
  866. top = CSS::Length::make_px(static_position.y());
  867. solve_for_bottom();
  868. }
  869. // If none of the three are auto:
  870. else if (!top.is_auto() && !height.is_auto() && !bottom.is_auto()) {
  871. // If both margin-top and margin-bottom are auto,
  872. if (margin_top.is_auto() && margin_bottom.is_auto()) {
  873. // solve the equation under the extra constraint that the two margins get equal values.
  874. solve_for_margin_top_and_margin_bottom();
  875. }
  876. // If one of margin-top or margin-bottom is auto,
  877. else if (margin_top.is_auto() || margin_bottom.is_auto()) {
  878. // solve the equation for that value.
  879. if (margin_top.is_auto())
  880. solve_for_margin_top();
  881. else
  882. solve_for_margin_bottom();
  883. }
  884. // If the values are over-constrained,
  885. else {
  886. // ignore the value for bottom and solve for that value.
  887. solve_for_bottom();
  888. }
  889. }
  890. // Otherwise,
  891. else {
  892. // set auto values for margin-top and margin-bottom to 0,
  893. if (margin_top.is_auto())
  894. margin_top = CSS::Length::make_px(0);
  895. if (margin_bottom.is_auto())
  896. margin_bottom = CSS::Length::make_px(0);
  897. // and pick one of the following six rules that apply.
  898. // 1. If top and height are auto and bottom is not auto,
  899. if (top.is_auto() && height.is_auto() && !bottom.is_auto()) {
  900. // then the height is based on the Auto heights for block formatting context roots,
  901. auto maybe_height = compute_auto_height_for_absolutely_positioned_element(box, available_space, before_or_after_inside_layout);
  902. if (!maybe_height.has_value())
  903. return height;
  904. height = CSS::Length::make_px(maybe_height.value());
  905. // and solve for top.
  906. solve_for_top();
  907. }
  908. // 2. If top and bottom are auto and height is not auto,
  909. else if (top.is_auto() && bottom.is_auto() && !height.is_auto()) {
  910. // then set top to the static position,
  911. top = CSS::Length::make_px(m_state.get(box).static_position().y());
  912. // then solve for bottom.
  913. solve_for_bottom();
  914. }
  915. // 3. If height and bottom are auto and top is not auto,
  916. else if (height.is_auto() && bottom.is_auto() && !top.is_auto()) {
  917. // then the height is based on the Auto heights for block formatting context roots,
  918. auto maybe_height = compute_auto_height_for_absolutely_positioned_element(box, available_space, before_or_after_inside_layout);
  919. if (!maybe_height.has_value())
  920. return height;
  921. height = CSS::Length::make_px(maybe_height.value());
  922. // and solve for bottom.
  923. solve_for_bottom();
  924. }
  925. // 4. If top is auto, height and bottom are not auto,
  926. else if (top.is_auto() && !height.is_auto() && !bottom.is_auto()) {
  927. // then solve for top.
  928. solve_for_top();
  929. }
  930. // 5. If height is auto, top and bottom are not auto,
  931. else if (height.is_auto() && !top.is_auto() && !bottom.is_auto()) {
  932. // then solve for height.
  933. solve_for_height();
  934. }
  935. // 6. If bottom is auto, top and height are not auto,
  936. else if (bottom.is_auto() && !top.is_auto() && !height.is_auto()) {
  937. // then solve for bottom.
  938. solve_for_bottom();
  939. }
  940. }
  941. return height;
  942. };
  943. // Compute the height based on box type and CSS properties:
  944. // https://www.w3.org/TR/css-sizing-3/#box-sizing
  945. auto used_height = try_compute_height([&] {
  946. if (is<TableWrapper>(box))
  947. return CSS::Length::make_px(compute_table_box_height_inside_table_wrapper(box, available_space));
  948. if (should_treat_height_as_auto(box, available_space))
  949. return CSS::Length::make_auto();
  950. return CSS::Length::make_px(calculate_inner_height(box, available_space.height, box.computed_values().height()));
  951. }());
  952. used_height = apply_min_max_height_constraints(used_height);
  953. // NOTE: The following is not directly part of any spec, but this is where we resolve
  954. // the final used values for vertical margin/border/padding.
  955. auto& box_state = m_state.get_mutable(box);
  956. box_state.set_content_height(used_height.to_px(box));
  957. // do not set calculated insets or margins on the first pass, there will be a second pass
  958. if (before_or_after_inside_layout == BeforeOrAfterInsideLayout::Before)
  959. return;
  960. box_state.inset_top = top.to_px(box, height_of_containing_block);
  961. box_state.inset_bottom = bottom.to_px(box, height_of_containing_block);
  962. box_state.margin_top = margin_top.to_px(box, width_of_containing_block);
  963. box_state.margin_bottom = margin_bottom.to_px(box, width_of_containing_block);
  964. }
  965. // 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.
  966. CSSPixelRect FormattingContext::content_box_rect_in_static_position_ancestor_coordinate_space(Box const& box, Box const& ancestor_box) const
  967. {
  968. auto rect = content_box_rect(box);
  969. if (&box == &ancestor_box)
  970. return rect;
  971. for (auto const* current = box.static_position_containing_block(); current; current = current->static_position_containing_block()) {
  972. if (current == &ancestor_box)
  973. return rect;
  974. auto const& current_state = m_state.get(*current);
  975. rect.translate_by(current_state.offset);
  976. }
  977. // If we get here, ancestor_box was not an ancestor of `box`!
  978. VERIFY_NOT_REACHED();
  979. }
  980. void FormattingContext::layout_absolutely_positioned_element(Box const& box, AvailableSpace const& available_space)
  981. {
  982. if (box.is_svg_box()) {
  983. dbgln("FIXME: Implement support for absolutely positioned SVG elements.");
  984. return;
  985. }
  986. auto& containing_block_state = m_state.get_mutable(*box.containing_block());
  987. // The size of the containing block of an abspos box is always definite from the perspective of the abspos box.
  988. // Since abspos boxes are laid out last, we can mark the containing block as having definite sizes at this point.
  989. containing_block_state.set_has_definite_width(true);
  990. containing_block_state.set_has_definite_height(true);
  991. auto& box_state = m_state.get_mutable(box);
  992. // The border computed values are not changed by the compute_height & width calculations below.
  993. // The spec only adjusts and computes sizes, insets and margins.
  994. box_state.border_left = box.computed_values().border_left().width;
  995. box_state.border_right = box.computed_values().border_right().width;
  996. box_state.border_top = box.computed_values().border_top().width;
  997. box_state.border_bottom = box.computed_values().border_bottom().width;
  998. auto const containing_block_width = available_space.width.to_px_or_zero();
  999. box_state.padding_left = box.computed_values().padding().left().to_px(box, containing_block_width);
  1000. box_state.padding_right = box.computed_values().padding().right().to_px(box, containing_block_width);
  1001. box_state.padding_top = box.computed_values().padding().top().to_px(box, containing_block_width);
  1002. box_state.padding_bottom = box.computed_values().padding().bottom().to_px(box, containing_block_width);
  1003. compute_width_for_absolutely_positioned_element(box, available_space);
  1004. // NOTE: We compute height before *and* after doing inside layout.
  1005. // This is done so that inside layout can resolve percentage heights.
  1006. // In some situations, e.g with non-auto top & bottom values, the height can be determined early.
  1007. compute_height_for_absolutely_positioned_element(box, available_space, BeforeOrAfterInsideLayout::Before);
  1008. // If the box width and/or height is fixed and/or or resolved from inset properties,
  1009. // mark the size as being definite (since layout was not required to resolve it, per CSS-SIZING-3).
  1010. if (box.computed_values().inset().left().is_length() && box.computed_values().inset().right().is_length()) {
  1011. box_state.set_has_definite_width(true);
  1012. }
  1013. if (box.computed_values().inset().top().is_length() && box.computed_values().inset().bottom().is_length()) {
  1014. box_state.set_has_definite_height(true);
  1015. }
  1016. auto independent_formatting_context = layout_inside(box, LayoutMode::Normal, box_state.available_inner_space_or_constraints_from(available_space));
  1017. compute_height_for_absolutely_positioned_element(box, available_space, BeforeOrAfterInsideLayout::After);
  1018. CSSPixelPoint used_offset;
  1019. auto static_position = m_state.get(box).static_position();
  1020. if (box.computed_values().inset().top().is_auto() && box.computed_values().inset().bottom().is_auto()) {
  1021. used_offset.set_y(static_position.y());
  1022. } else {
  1023. used_offset.set_y(box_state.inset_top);
  1024. // NOTE: Absolutely positioned boxes are relative to the *padding edge* of the containing block.
  1025. used_offset.translate_by(0, -containing_block_state.padding_top);
  1026. }
  1027. if (box.computed_values().inset().left().is_auto() && box.computed_values().inset().right().is_auto()) {
  1028. used_offset.set_x(static_position.x());
  1029. } else {
  1030. used_offset.set_x(box_state.inset_left);
  1031. // NOTE: Absolutely positioned boxes are relative to the *padding edge* of the containing block.
  1032. used_offset.translate_by(-containing_block_state.padding_left, 0);
  1033. }
  1034. used_offset.translate_by(box_state.margin_box_left(), box_state.margin_box_top());
  1035. box_state.set_content_offset(used_offset);
  1036. if (independent_formatting_context)
  1037. independent_formatting_context->parent_context_did_dimension_child_root_box();
  1038. }
  1039. void FormattingContext::compute_height_for_absolutely_positioned_replaced_element(Box const& box, AvailableSpace const& available_space, BeforeOrAfterInsideLayout before_or_after_inside_layout)
  1040. {
  1041. // 10.6.5 Absolutely positioned, replaced elements
  1042. // This situation is similar to 10.6.4, except that the element has an intrinsic height.
  1043. // The used value of 'height' is determined as for inline replaced elements.
  1044. auto height = compute_height_for_replaced_element(box, available_space);
  1045. auto height_of_containing_block = available_space.height.to_px_or_zero();
  1046. auto available = height_of_containing_block - height;
  1047. auto const& computed_values = box.computed_values();
  1048. auto top = computed_values.inset().top();
  1049. auto margin_top = computed_values.margin().top();
  1050. auto bottom = computed_values.inset().bottom();
  1051. auto margin_bottom = computed_values.margin().bottom();
  1052. auto static_position = m_state.get(box).static_position();
  1053. auto to_px = [&](const CSS::LengthPercentage& l) {
  1054. return l.to_px(box, height_of_containing_block);
  1055. };
  1056. // If 'margin-top' or 'margin-bottom' is specified as 'auto' its used value is determined by the rules below.
  1057. // 2. If both 'top' and 'bottom' have the value 'auto', replace 'top' with the element's static position.
  1058. if (top.is_auto() && bottom.is_auto()) {
  1059. top = CSS::Length::make_px(static_position.x());
  1060. }
  1061. // 3. If 'bottom' is 'auto', replace any 'auto' on 'margin-top' or 'margin-bottom' with '0'.
  1062. if (bottom.is_auto()) {
  1063. if (margin_top.is_auto())
  1064. margin_top = CSS::Length::make_px(0);
  1065. if (margin_bottom.is_auto())
  1066. margin_bottom = CSS::Length::make_px(0);
  1067. }
  1068. // 4. If at this point both 'margin-top' and 'margin-bottom' are still 'auto',
  1069. // solve the equation under the extra constraint that the two margins must get equal values.
  1070. if (margin_top.is_auto() && margin_bottom.is_auto()) {
  1071. auto remainder = available - to_px(top) - to_px(bottom);
  1072. margin_top = CSS::Length::make_px(remainder / 2);
  1073. margin_bottom = CSS::Length::make_px(remainder / 2);
  1074. }
  1075. // 5. If at this point there is an 'auto' left, solve the equation for that value.
  1076. if (top.is_auto()) {
  1077. top = CSS::Length::make_px(available - to_px(bottom) - to_px(margin_top) - to_px(margin_bottom));
  1078. } else if (bottom.is_auto()) {
  1079. bottom = CSS::Length::make_px(available - to_px(top) - to_px(margin_top) - to_px(margin_bottom));
  1080. } else if (margin_top.is_auto()) {
  1081. margin_top = CSS::Length::make_px(available - to_px(top) - to_px(bottom) - to_px(margin_bottom));
  1082. } else if (margin_bottom.is_auto()) {
  1083. margin_bottom = CSS::Length::make_px(available - to_px(top) - to_px(margin_top) - to_px(bottom));
  1084. }
  1085. // 6. If at this point the values are over-constrained, ignore the value for 'bottom' and solve for that value.
  1086. if (0 != available - to_px(top) - to_px(bottom) - to_px(margin_top) - to_px(margin_bottom)) {
  1087. bottom = CSS::Length::make_px(available - to_px(top) - to_px(margin_top) - to_px(margin_bottom));
  1088. }
  1089. auto& box_state = m_state.get_mutable(box);
  1090. box_state.set_content_height(height);
  1091. // do not set calculated insets or margins on the first pass, there will be a second pass
  1092. if (before_or_after_inside_layout == BeforeOrAfterInsideLayout::Before)
  1093. return;
  1094. box_state.inset_top = to_px(top);
  1095. box_state.inset_bottom = to_px(bottom);
  1096. box_state.margin_top = to_px(margin_top);
  1097. box_state.margin_bottom = to_px(margin_bottom);
  1098. }
  1099. // https://www.w3.org/TR/css-position-3/#relpos-insets
  1100. void FormattingContext::compute_inset(NodeWithStyleAndBoxModelMetrics const& box, CSSPixelSize containing_block_size)
  1101. {
  1102. if (box.computed_values().position() != CSS::Positioning::Relative)
  1103. return;
  1104. 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) {
  1105. auto resolved_first = computed_first.to_px(box, reference_for_percentage);
  1106. auto resolved_second = computed_second.to_px(box, reference_for_percentage);
  1107. if (computed_first.is_auto() && computed_second.is_auto()) {
  1108. // If opposing inset properties in an axis both compute to auto (their initial values),
  1109. // their used values are zero (i.e., the boxes stay in their original position in that axis).
  1110. used_start = 0;
  1111. used_end = 0;
  1112. } else if (computed_first.is_auto() || computed_second.is_auto()) {
  1113. // If only one is auto, its used value becomes the negation of the other, and the box is shifted by the specified amount.
  1114. if (computed_first.is_auto()) {
  1115. used_end = resolved_second;
  1116. used_start = -used_end;
  1117. } else {
  1118. used_start = resolved_first;
  1119. used_end = -used_start;
  1120. }
  1121. } else {
  1122. // If neither is auto, the position is over-constrained; (with respect to the writing mode of its containing block)
  1123. // the computed end side value is ignored, and its used value becomes the negation of the start side.
  1124. used_start = resolved_first;
  1125. used_end = -used_start;
  1126. }
  1127. };
  1128. auto& box_state = m_state.get_mutable(box);
  1129. auto const& computed_values = box.computed_values();
  1130. // FIXME: Respect the containing block's writing-mode.
  1131. resolve_two_opposing_insets(computed_values.inset().left(), computed_values.inset().right(), box_state.inset_left, box_state.inset_right, containing_block_size.width());
  1132. resolve_two_opposing_insets(computed_values.inset().top(), computed_values.inset().bottom(), box_state.inset_top, box_state.inset_bottom, containing_block_size.height());
  1133. }
  1134. // https://drafts.csswg.org/css-sizing-3/#fit-content-size
  1135. CSSPixels FormattingContext::calculate_fit_content_width(Layout::Box const& box, AvailableSpace const& available_space) const
  1136. {
  1137. // If the available space in a given axis is definite,
  1138. // equal to clamp(min-content size, stretch-fit size, max-content size)
  1139. // (i.e. max(min-content size, min(max-content size, stretch-fit size))).
  1140. if (available_space.width.is_definite()) {
  1141. return max(calculate_min_content_width(box),
  1142. min(calculate_stretch_fit_width(box, available_space.width),
  1143. calculate_max_content_width(box)));
  1144. }
  1145. // When sizing under a min-content constraint, equal to the min-content size.
  1146. if (available_space.width.is_min_content())
  1147. return calculate_min_content_width(box);
  1148. // Otherwise, equal to the max-content size in that axis.
  1149. return calculate_max_content_width(box);
  1150. }
  1151. // https://drafts.csswg.org/css-sizing-3/#fit-content-size
  1152. CSSPixels FormattingContext::calculate_fit_content_height(Layout::Box const& box, AvailableSpace const& available_space) const
  1153. {
  1154. // If the available space in a given axis is definite,
  1155. // equal to clamp(min-content size, stretch-fit size, max-content size)
  1156. // (i.e. max(min-content size, min(max-content size, stretch-fit size))).
  1157. if (available_space.height.is_definite()) {
  1158. return max(calculate_min_content_height(box, available_space.width.to_px_or_zero()),
  1159. min(calculate_stretch_fit_height(box, available_space.height),
  1160. calculate_max_content_height(box, available_space.width.to_px_or_zero())));
  1161. }
  1162. // When sizing under a min-content constraint, equal to the min-content size.
  1163. if (available_space.height.is_min_content())
  1164. return calculate_min_content_height(box, available_space.width.to_px_or_zero());
  1165. // Otherwise, equal to the max-content size in that axis.
  1166. return calculate_max_content_height(box, available_space.width.to_px_or_zero());
  1167. }
  1168. CSSPixels FormattingContext::calculate_min_content_width(Layout::Box const& box) const
  1169. {
  1170. if (box.has_natural_width())
  1171. return *box.natural_width();
  1172. auto& root_state = m_state.m_root;
  1173. auto& cache = *root_state.intrinsic_sizes.ensure(&box, [] { return adopt_own(*new LayoutState::IntrinsicSizes); });
  1174. if (cache.min_content_width.has_value())
  1175. return *cache.min_content_width;
  1176. LayoutState throwaway_state(&m_state);
  1177. auto& box_state = throwaway_state.get_mutable(box);
  1178. box_state.width_constraint = SizeConstraint::MinContent;
  1179. box_state.set_indefinite_content_width();
  1180. auto context = const_cast<FormattingContext*>(this)->create_independent_formatting_context_if_needed(throwaway_state, LayoutMode::IntrinsicSizing, box);
  1181. if (!context) {
  1182. context = make<BlockFormattingContext>(throwaway_state, LayoutMode::IntrinsicSizing, verify_cast<BlockContainer>(box), nullptr);
  1183. }
  1184. auto available_width = AvailableSize::make_min_content();
  1185. auto available_height = box_state.has_definite_height()
  1186. ? AvailableSize::make_definite(box_state.content_height())
  1187. : AvailableSize::make_indefinite();
  1188. context->run(AvailableSpace(available_width, available_height));
  1189. cache.min_content_width = context->automatic_content_width();
  1190. if (cache.min_content_width->might_be_saturated()) {
  1191. // HACK: If layout calculates a non-finite result, something went wrong. Force it to zero and log a little whine.
  1192. dbgln("FIXME: Calculated non-finite min-content width for {}", box.debug_description());
  1193. cache.min_content_width = 0;
  1194. }
  1195. return *cache.min_content_width;
  1196. }
  1197. CSSPixels FormattingContext::calculate_max_content_width(Layout::Box const& box) const
  1198. {
  1199. if (box.has_natural_width())
  1200. return *box.natural_width();
  1201. auto& root_state = m_state.m_root;
  1202. auto& cache = *root_state.intrinsic_sizes.ensure(&box, [] { return adopt_own(*new LayoutState::IntrinsicSizes); });
  1203. if (cache.max_content_width.has_value())
  1204. return *cache.max_content_width;
  1205. LayoutState throwaway_state(&m_state);
  1206. auto& box_state = throwaway_state.get_mutable(box);
  1207. box_state.width_constraint = SizeConstraint::MaxContent;
  1208. box_state.set_indefinite_content_width();
  1209. auto context = const_cast<FormattingContext*>(this)->create_independent_formatting_context_if_needed(throwaway_state, LayoutMode::IntrinsicSizing, box);
  1210. if (!context) {
  1211. context = make<BlockFormattingContext>(throwaway_state, LayoutMode::IntrinsicSizing, verify_cast<BlockContainer>(box), nullptr);
  1212. }
  1213. auto available_width = AvailableSize::make_max_content();
  1214. auto available_height = box_state.has_definite_height()
  1215. ? AvailableSize::make_definite(box_state.content_height())
  1216. : AvailableSize::make_indefinite();
  1217. context->run(AvailableSpace(available_width, available_height));
  1218. cache.max_content_width = context->automatic_content_width();
  1219. if (cache.max_content_width->might_be_saturated()) {
  1220. // HACK: If layout calculates a non-finite result, something went wrong. Force it to zero and log a little whine.
  1221. dbgln("FIXME: Calculated non-finite max-content width for {}", box.debug_description());
  1222. cache.max_content_width = 0;
  1223. }
  1224. return *cache.max_content_width;
  1225. }
  1226. // https://www.w3.org/TR/css-sizing-3/#min-content-block-size
  1227. CSSPixels FormattingContext::calculate_min_content_height(Layout::Box const& box, CSSPixels width) const
  1228. {
  1229. // For block containers, tables, and inline boxes, this is equivalent to the max-content block size.
  1230. if (box.is_block_container() || box.display().is_table_inside())
  1231. return calculate_max_content_height(box, width);
  1232. if (box.has_natural_height())
  1233. return *box.natural_height();
  1234. auto get_cache_slot = [&]() -> Optional<CSSPixels>* {
  1235. auto& root_state = m_state.m_root;
  1236. auto& cache = *root_state.intrinsic_sizes.ensure(&box, [] { return adopt_own(*new LayoutState::IntrinsicSizes); });
  1237. return &cache.min_content_height.ensure(width);
  1238. };
  1239. if (auto* cache_slot = get_cache_slot(); cache_slot && cache_slot->has_value())
  1240. return cache_slot->value();
  1241. LayoutState throwaway_state(&m_state);
  1242. auto& box_state = throwaway_state.get_mutable(box);
  1243. box_state.height_constraint = SizeConstraint::MinContent;
  1244. box_state.set_indefinite_content_height();
  1245. box_state.set_content_width(width);
  1246. auto context = const_cast<FormattingContext*>(this)->create_independent_formatting_context_if_needed(throwaway_state, LayoutMode::IntrinsicSizing, box);
  1247. if (!context) {
  1248. context = make<BlockFormattingContext>(throwaway_state, LayoutMode::IntrinsicSizing, verify_cast<BlockContainer>(box), nullptr);
  1249. }
  1250. context->run(AvailableSpace(AvailableSize::make_definite(width), AvailableSize::make_min_content()));
  1251. auto min_content_height = context->automatic_content_height();
  1252. if (min_content_height.might_be_saturated()) {
  1253. // HACK: If layout calculates a non-finite result, something went wrong. Force it to zero and log a little whine.
  1254. dbgln("FIXME: Calculated non-finite min-content height for {}", box.debug_description());
  1255. min_content_height = 0;
  1256. }
  1257. if (auto* cache_slot = get_cache_slot()) {
  1258. *cache_slot = min_content_height;
  1259. }
  1260. return min_content_height;
  1261. }
  1262. CSSPixels FormattingContext::calculate_max_content_height(Layout::Box const& box, CSSPixels width) const
  1263. {
  1264. if (box.has_preferred_aspect_ratio())
  1265. return width / *box.preferred_aspect_ratio();
  1266. if (box.has_natural_height())
  1267. return *box.natural_height();
  1268. auto get_cache_slot = [&]() -> Optional<CSSPixels>* {
  1269. auto& root_state = m_state.m_root;
  1270. auto& cache = *root_state.intrinsic_sizes.ensure(&box, [] { return adopt_own(*new LayoutState::IntrinsicSizes); });
  1271. return &cache.max_content_height.ensure(width);
  1272. };
  1273. if (auto* cache_slot = get_cache_slot(); cache_slot && cache_slot->has_value())
  1274. return cache_slot->value();
  1275. LayoutState throwaway_state(&m_state);
  1276. auto& box_state = throwaway_state.get_mutable(box);
  1277. box_state.height_constraint = SizeConstraint::MaxContent;
  1278. box_state.set_indefinite_content_height();
  1279. box_state.set_content_width(width);
  1280. auto context = const_cast<FormattingContext*>(this)->create_independent_formatting_context_if_needed(throwaway_state, LayoutMode::IntrinsicSizing, box);
  1281. if (!context) {
  1282. context = make<BlockFormattingContext>(throwaway_state, LayoutMode::IntrinsicSizing, verify_cast<BlockContainer>(box), nullptr);
  1283. }
  1284. context->run(AvailableSpace(AvailableSize::make_definite(width), AvailableSize::make_max_content()));
  1285. auto max_content_height = context->automatic_content_height();
  1286. if (max_content_height.might_be_saturated()) {
  1287. // HACK: If layout calculates a non-finite result, something went wrong. Force it to zero and log a little whine.
  1288. dbgln("FIXME: Calculated non-finite max-content height for {}", box.debug_description());
  1289. max_content_height = 0;
  1290. }
  1291. if (auto* cache_slot = get_cache_slot()) {
  1292. *cache_slot = max_content_height;
  1293. }
  1294. return max_content_height;
  1295. }
  1296. CSSPixels FormattingContext::calculate_inner_width(Layout::Box const& box, AvailableSize const& available_width, CSS::Size const& width) const
  1297. {
  1298. VERIFY(!width.is_auto());
  1299. auto width_of_containing_block = available_width.to_px_or_zero();
  1300. if (width.is_fit_content()) {
  1301. return calculate_fit_content_width(box, AvailableSpace { available_width, AvailableSize::make_indefinite() });
  1302. }
  1303. if (width.is_max_content()) {
  1304. return calculate_max_content_width(box);
  1305. }
  1306. if (width.is_min_content()) {
  1307. return calculate_min_content_width(box);
  1308. }
  1309. auto& computed_values = box.computed_values();
  1310. if (computed_values.box_sizing() == CSS::BoxSizing::BorderBox) {
  1311. auto const& state = m_state.get(box);
  1312. auto inner_width = width.to_px(box, width_of_containing_block)
  1313. - computed_values.border_left().width
  1314. - state.padding_left
  1315. - computed_values.border_right().width
  1316. - state.padding_right;
  1317. return max(inner_width, 0);
  1318. }
  1319. return width.to_px(box, width_of_containing_block);
  1320. }
  1321. CSSPixels FormattingContext::calculate_inner_height(Layout::Box const& box, AvailableSize const& available_height, CSS::Size const& height) const
  1322. {
  1323. VERIFY(!height.is_auto());
  1324. auto height_of_containing_block = available_height.to_px_or_zero();
  1325. auto& computed_values = box.computed_values();
  1326. if (computed_values.box_sizing() == CSS::BoxSizing::BorderBox) {
  1327. auto const& state = m_state.get(box);
  1328. auto inner_height = height.to_px(box, height_of_containing_block)
  1329. - computed_values.border_top().width
  1330. - state.padding_top
  1331. - computed_values.border_bottom().width
  1332. - state.padding_bottom;
  1333. return max(inner_height, 0);
  1334. }
  1335. return height.to_px(box, height_of_containing_block);
  1336. }
  1337. CSSPixels FormattingContext::containing_block_width_for(NodeWithStyleAndBoxModelMetrics const& node) const
  1338. {
  1339. auto const& used_values = m_state.get(node);
  1340. switch (used_values.width_constraint) {
  1341. case SizeConstraint::MinContent:
  1342. return 0;
  1343. case SizeConstraint::MaxContent:
  1344. return CSSPixels::max();
  1345. case SizeConstraint::None:
  1346. return used_values.containing_block_used_values()->content_width();
  1347. }
  1348. VERIFY_NOT_REACHED();
  1349. }
  1350. CSSPixels FormattingContext::containing_block_height_for(NodeWithStyleAndBoxModelMetrics const& node) const
  1351. {
  1352. auto const& used_values = m_state.get(node);
  1353. switch (used_values.height_constraint) {
  1354. case SizeConstraint::MinContent:
  1355. return 0;
  1356. case SizeConstraint::MaxContent:
  1357. return CSSPixels::max();
  1358. case SizeConstraint::None:
  1359. return used_values.containing_block_used_values()->content_height();
  1360. }
  1361. VERIFY_NOT_REACHED();
  1362. }
  1363. // https://drafts.csswg.org/css-sizing-3/#stretch-fit-size
  1364. CSSPixels FormattingContext::calculate_stretch_fit_width(Box const& box, AvailableSize const& available_width) const
  1365. {
  1366. // The size a box would take if its outer size filled the available space in the given axis;
  1367. // in other words, the stretch fit into the available space, if that is definite.
  1368. // Undefined if the available space is indefinite.
  1369. if (!available_width.is_definite())
  1370. return 0;
  1371. auto const& box_state = m_state.get(box);
  1372. return available_width.to_px_or_zero()
  1373. - box_state.margin_left
  1374. - box_state.margin_right
  1375. - box_state.padding_left
  1376. - box_state.padding_right
  1377. - box_state.border_left
  1378. - box_state.border_right;
  1379. }
  1380. // https://drafts.csswg.org/css-sizing-3/#stretch-fit-size
  1381. CSSPixels FormattingContext::calculate_stretch_fit_height(Box const& box, AvailableSize const& available_height) const
  1382. {
  1383. // The size a box would take if its outer size filled the available space in the given axis;
  1384. // in other words, the stretch fit into the available space, if that is definite.
  1385. // Undefined if the available space is indefinite.
  1386. auto const& box_state = m_state.get(box);
  1387. return available_height.to_px_or_zero()
  1388. - box_state.margin_top
  1389. - box_state.margin_bottom
  1390. - box_state.padding_top
  1391. - box_state.padding_bottom
  1392. - box_state.border_top
  1393. - box_state.border_bottom;
  1394. }
  1395. bool FormattingContext::should_treat_width_as_auto(Box const& box, AvailableSpace const& available_space)
  1396. {
  1397. auto const& computed_width = box.computed_values().width();
  1398. if (computed_width.is_auto())
  1399. return true;
  1400. if (computed_width.contains_percentage()) {
  1401. if (available_space.width.is_max_content())
  1402. return true;
  1403. if (available_space.width.is_indefinite())
  1404. return true;
  1405. }
  1406. // AD-HOC: If the box has a preferred aspect ratio and no natural height,
  1407. // we treat the width as auto, since it can't be resolved through the ratio.
  1408. if (computed_width.is_min_content() || computed_width.is_max_content() || computed_width.is_fit_content()) {
  1409. if (box.has_preferred_aspect_ratio() && !box.has_natural_height())
  1410. return true;
  1411. }
  1412. return false;
  1413. }
  1414. bool FormattingContext::should_treat_height_as_auto(Box const& box, AvailableSpace const& available_space)
  1415. {
  1416. auto computed_height = box.computed_values().height();
  1417. if (computed_height.is_auto())
  1418. return true;
  1419. // https://www.w3.org/TR/css-sizing-3/#valdef-width-min-content
  1420. // https://www.w3.org/TR/css-sizing-3/#valdef-width-max-content
  1421. // https://www.w3.org/TR/css-sizing-3/#valdef-width-fit-content
  1422. // For a box’s block size, unless otherwise specified, this is equivalent to its automatic size.
  1423. // FIXME: If height is not the block axis size, then we should be concerned with the width instead.
  1424. if (computed_height.is_min_content() || computed_height.is_max_content() || computed_height.is_fit_content())
  1425. return true;
  1426. if (box.computed_values().height().contains_percentage()) {
  1427. if (available_space.height.is_max_content())
  1428. return true;
  1429. if (available_space.height.is_indefinite())
  1430. return true;
  1431. }
  1432. return false;
  1433. }
  1434. bool FormattingContext::can_skip_is_anonymous_text_run(Box& box)
  1435. {
  1436. if (box.is_anonymous() && !box.is_generated() && !box.first_child_of_type<BlockContainer>()) {
  1437. bool contains_only_white_space = true;
  1438. box.for_each_in_subtree([&](auto const& node) {
  1439. if (!is<TextNode>(node) || !static_cast<TextNode const&>(node).dom_node().data().bytes_as_string_view().is_whitespace()) {
  1440. contains_only_white_space = false;
  1441. return TraversalDecision::Break;
  1442. }
  1443. return TraversalDecision::Continue;
  1444. });
  1445. if (contains_only_white_space)
  1446. return true;
  1447. }
  1448. return false;
  1449. }
  1450. CSSPixelRect FormattingContext::absolute_content_rect(Box const& box) const
  1451. {
  1452. auto const& box_state = m_state.get(box);
  1453. CSSPixelRect rect { box_state.offset, { box_state.content_width(), box_state.content_height() } };
  1454. for (auto* block = box_state.containing_block_used_values(); block; block = block->containing_block_used_values())
  1455. rect.translate_by(block->offset);
  1456. return rect;
  1457. }
  1458. Box const* FormattingContext::box_child_to_derive_baseline_from(Box const& box) const
  1459. {
  1460. if (!box.has_children() || box.children_are_inline())
  1461. return nullptr;
  1462. // To find the baseline of a box, we first look for the last in-flow child with at least one line box.
  1463. auto const* last_box_child = box.last_child_of_type<Box>();
  1464. for (Node const* child = last_box_child; child; child = child->previous_sibling()) {
  1465. if (!child->is_box())
  1466. continue;
  1467. auto& child_box = static_cast<Box const&>(*child);
  1468. if (!child_box.is_out_of_flow(*this) && !m_state.get(child_box).line_boxes.is_empty()) {
  1469. return &child_box;
  1470. }
  1471. auto box_child_to_derive_baseline_from_candidate = box_child_to_derive_baseline_from(child_box);
  1472. if (box_child_to_derive_baseline_from_candidate)
  1473. return box_child_to_derive_baseline_from_candidate;
  1474. }
  1475. // None of the children has a line box.
  1476. return nullptr;
  1477. }
  1478. CSSPixels FormattingContext::box_baseline(Box const& box) const
  1479. {
  1480. auto const& box_state = m_state.get(box);
  1481. // https://www.w3.org/TR/CSS2/visudet.html#propdef-vertical-align
  1482. auto const& vertical_align = box.computed_values().vertical_align();
  1483. if (vertical_align.has<CSS::VerticalAlign>()) {
  1484. switch (vertical_align.get<CSS::VerticalAlign>()) {
  1485. case CSS::VerticalAlign::Top:
  1486. // Top: Align the top of the aligned subtree with the top of the line box.
  1487. return box_state.border_box_top();
  1488. case CSS::VerticalAlign::Middle:
  1489. // Align the vertical midpoint of the box with the baseline of the parent box plus half the x-height of the parent.
  1490. return box_state.content_height() / 2 + CSSPixels::nearest_value_for(box.containing_block()->first_available_font().pixel_metrics().x_height / 2);
  1491. case CSS::VerticalAlign::Bottom:
  1492. // Bottom: Align the bottom of the aligned subtree with the bottom of the line box.
  1493. return box_state.content_height() + box_state.margin_box_top();
  1494. case CSS::VerticalAlign::TextTop:
  1495. // TextTop: Align the top of the box with the top of the parent's content area (see 10.6.1).
  1496. return box.computed_values().font_size();
  1497. case CSS::VerticalAlign::TextBottom:
  1498. // TextTop: Align the bottom of the box with the bottom of the parent's content area (see 10.6.1).
  1499. return box_state.content_height() - CSSPixels::nearest_value_for(box.containing_block()->first_available_font().pixel_metrics().descent * 2);
  1500. default:
  1501. break;
  1502. }
  1503. }
  1504. if (!box_state.line_boxes.is_empty())
  1505. return box_state.margin_box_top() + box_state.offset.y() + box_state.line_boxes.last().baseline();
  1506. if (auto const* child_box = box_child_to_derive_baseline_from(box)) {
  1507. return box_state.margin_box_top() + box_state.offset.y() + box_baseline(*child_box);
  1508. }
  1509. // If none of the children have a baseline set, the bottom margin edge of the box is used.
  1510. return box_state.margin_box_height();
  1511. }
  1512. CSSPixelRect FormattingContext::margin_box_rect(LayoutState::UsedValues const& used_values) const
  1513. {
  1514. return {
  1515. used_values.offset.translated(-used_values.margin_box_left(), -used_values.margin_box_top()),
  1516. {
  1517. used_values.margin_box_left() + used_values.content_width() + used_values.margin_box_right(),
  1518. used_values.margin_box_top() + used_values.content_height() + used_values.margin_box_bottom(),
  1519. },
  1520. };
  1521. }
  1522. CSSPixelRect FormattingContext::margin_box_rect(Box const& box) const
  1523. {
  1524. return margin_box_rect(m_state.get(box));
  1525. }
  1526. CSSPixelRect FormattingContext::border_box_rect(LayoutState::UsedValues const& used_values) const
  1527. {
  1528. return {
  1529. used_values.offset.translated(-used_values.border_box_left(), -used_values.border_box_top()),
  1530. {
  1531. used_values.border_box_left() + used_values.content_width() + used_values.border_box_right(),
  1532. used_values.border_box_top() + used_values.content_height() + used_values.border_box_bottom(),
  1533. },
  1534. };
  1535. }
  1536. CSSPixelRect FormattingContext::border_box_rect(Box const& box) const
  1537. {
  1538. return border_box_rect(m_state.get(box));
  1539. }
  1540. CSSPixelRect FormattingContext::border_box_rect_in_ancestor_coordinate_space(LayoutState::UsedValues const& used_values, Box const& ancestor_box) const
  1541. {
  1542. auto rect = border_box_rect(used_values);
  1543. if (&used_values.node() == &ancestor_box)
  1544. return rect;
  1545. for (auto const* current = used_values.containing_block_used_values(); current; current = current->containing_block_used_values()) {
  1546. if (&current->node() == &ancestor_box)
  1547. return rect;
  1548. rect.translate_by(current->offset);
  1549. }
  1550. // If we get here, ancestor_box was not a containing block ancestor of `box`!
  1551. VERIFY_NOT_REACHED();
  1552. }
  1553. CSSPixelRect FormattingContext::border_box_rect_in_ancestor_coordinate_space(Box const& box, Box const& ancestor_box) const
  1554. {
  1555. return border_box_rect_in_ancestor_coordinate_space(m_state.get(box), ancestor_box);
  1556. }
  1557. CSSPixelRect FormattingContext::content_box_rect(Box const& box) const
  1558. {
  1559. return content_box_rect(m_state.get(box));
  1560. }
  1561. CSSPixelRect FormattingContext::content_box_rect(LayoutState::UsedValues const& used_values) const
  1562. {
  1563. return CSSPixelRect { used_values.offset, { used_values.content_width(), used_values.content_height() } };
  1564. }
  1565. CSSPixelRect FormattingContext::content_box_rect_in_ancestor_coordinate_space(LayoutState::UsedValues const& used_values, Box const& ancestor_box) const
  1566. {
  1567. auto rect = content_box_rect(used_values);
  1568. if (&used_values.node() == &ancestor_box)
  1569. return rect;
  1570. for (auto const* current = used_values.containing_block_used_values(); current; current = current->containing_block_used_values()) {
  1571. if (&current->node() == &ancestor_box)
  1572. return rect;
  1573. rect.translate_by(current->offset);
  1574. }
  1575. // If we get here, ancestor_box was not a containing block ancestor of `box`!
  1576. VERIFY_NOT_REACHED();
  1577. }
  1578. CSSPixelRect FormattingContext::content_box_rect_in_ancestor_coordinate_space(Box const& box, Box const& ancestor_box) const
  1579. {
  1580. return content_box_rect_in_ancestor_coordinate_space(m_state.get(box), ancestor_box);
  1581. }
  1582. CSSPixelRect FormattingContext::margin_box_rect_in_ancestor_coordinate_space(LayoutState::UsedValues const& used_values, Box const& ancestor_box) const
  1583. {
  1584. auto rect = margin_box_rect(used_values);
  1585. if (&used_values.node() == &ancestor_box)
  1586. return rect;
  1587. for (auto const* current = used_values.containing_block_used_values(); current; current = current->containing_block_used_values()) {
  1588. if (&current->node() == &ancestor_box)
  1589. return rect;
  1590. rect.translate_by(current->offset);
  1591. }
  1592. // If we get here, ancestor_box was not a containing block ancestor of `box`!
  1593. VERIFY_NOT_REACHED();
  1594. }
  1595. CSSPixelRect FormattingContext::margin_box_rect_in_ancestor_coordinate_space(Box const& box, Box const& ancestor_box) const
  1596. {
  1597. return margin_box_rect_in_ancestor_coordinate_space(m_state.get(box), ancestor_box);
  1598. }
  1599. bool box_is_sized_as_replaced_element(Box const& box)
  1600. {
  1601. // When a box has a preferred aspect ratio, its automatic sizes are calculated the same as for a
  1602. // replaced element with a natural aspect ratio and no natural size in that axis, see e.g. CSS2 §10
  1603. // and CSS Flexible Box Model Level 1 §9.2.
  1604. // https://www.w3.org/TR/css-sizing-4/#aspect-ratio-automatic
  1605. if (is<ReplacedBox>(box))
  1606. return true;
  1607. if (box.has_preferred_aspect_ratio()) {
  1608. // From CSS2:
  1609. // If height and width both have computed values of auto and the element has an intrinsic ratio but no intrinsic height or width,
  1610. // then the used value of width is undefined in CSS 2.
  1611. // However, it is suggested that, if the containing block’s width does not itself depend on the replaced element’s width,
  1612. // then the used value of width is calculated from the constraint equation used for block-level, non-replaced elements in normal flow.
  1613. // AD-HOC: For inline-level boxes, we don't want to end up in a situation where we apply stretch-fit sizing,
  1614. // since that would not match other browsers. Because of that, we specifically reject this case here
  1615. // instead of allowing it to proceed.
  1616. if (box.display().is_inline_outside()
  1617. && box.computed_values().height().is_auto()
  1618. && box.computed_values().width().is_auto()
  1619. && !box.has_natural_width()
  1620. && !box.has_natural_height()) {
  1621. return false;
  1622. }
  1623. return true;
  1624. }
  1625. return false;
  1626. }
  1627. bool FormattingContext::should_treat_max_width_as_none(Box const& box, AvailableSize const& available_width) const
  1628. {
  1629. auto const& max_width = box.computed_values().max_width();
  1630. if (max_width.is_none())
  1631. return true;
  1632. if (available_width.is_max_content() && max_width.is_max_content())
  1633. return true;
  1634. if (box.is_absolutely_positioned())
  1635. return false;
  1636. if (max_width.contains_percentage()) {
  1637. if (available_width.is_max_content())
  1638. return true;
  1639. if (available_width.is_min_content())
  1640. return false;
  1641. if (!m_state.get(*box.non_anonymous_containing_block()).has_definite_width())
  1642. return true;
  1643. }
  1644. if (max_width.is_fit_content() && available_width.is_intrinsic_sizing_constraint())
  1645. return true;
  1646. if (max_width.is_max_content() && available_width.is_max_content())
  1647. return true;
  1648. if (max_width.is_min_content() && available_width.is_min_content())
  1649. return true;
  1650. return false;
  1651. }
  1652. bool FormattingContext::should_treat_max_height_as_none(Box const& box, AvailableSize const& available_height) const
  1653. {
  1654. // https://www.w3.org/TR/CSS22/visudet.html#min-max-heights
  1655. // If the height of the containing block is not specified explicitly (i.e., it depends on content height),
  1656. // and this element is not absolutely positioned, the percentage value is treated as '0' (for 'min-height')
  1657. // or 'none' (for 'max-height').
  1658. auto const& max_height = box.computed_values().max_height();
  1659. if (max_height.is_none())
  1660. return true;
  1661. if (box.is_absolutely_positioned())
  1662. return false;
  1663. if (max_height.contains_percentage()) {
  1664. if (available_height.is_min_content())
  1665. return false;
  1666. if (!m_state.get(*box.non_anonymous_containing_block()).has_definite_height())
  1667. return true;
  1668. }
  1669. return false;
  1670. }
  1671. }