FormattingContext.cpp 79 KB

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