FormattingContext.cpp 85 KB

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