FormattingContext.cpp 67 KB

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