FormattingContext.cpp 96 KB

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