StyleComputer.cpp 77 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714
  1. /*
  2. * Copyright (c) 2018-2023, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021, the SerenityOS developers.
  4. * Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org>
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause
  7. */
  8. #include <AK/Debug.h>
  9. #include <AK/Error.h>
  10. #include <AK/HashMap.h>
  11. #include <AK/QuickSort.h>
  12. #include <AK/TemporaryChange.h>
  13. #include <LibGfx/Font/Font.h>
  14. #include <LibGfx/Font/FontDatabase.h>
  15. #include <LibGfx/Font/FontStyleMapping.h>
  16. #include <LibGfx/Font/OpenType/Font.h>
  17. #include <LibGfx/Font/ScaledFont.h>
  18. #include <LibGfx/Font/VectorFont.h>
  19. #include <LibGfx/Font/WOFF/Font.h>
  20. #include <LibWeb/CSS/CSSFontFaceRule.h>
  21. #include <LibWeb/CSS/CSSImportRule.h>
  22. #include <LibWeb/CSS/CSSStyleRule.h>
  23. #include <LibWeb/CSS/Parser/Parser.h>
  24. #include <LibWeb/CSS/SelectorEngine.h>
  25. #include <LibWeb/CSS/StyleComputer.h>
  26. #include <LibWeb/CSS/StyleSheet.h>
  27. #include <LibWeb/CSS/StyleValues/BackgroundStyleValue.h>
  28. #include <LibWeb/CSS/StyleValues/BorderRadiusShorthandStyleValue.h>
  29. #include <LibWeb/CSS/StyleValues/BorderRadiusStyleValue.h>
  30. #include <LibWeb/CSS/StyleValues/BorderStyleValue.h>
  31. #include <LibWeb/CSS/StyleValues/ColorStyleValue.h>
  32. #include <LibWeb/CSS/StyleValues/DisplayStyleValue.h>
  33. #include <LibWeb/CSS/StyleValues/FilterValueListStyleValue.h>
  34. #include <LibWeb/CSS/StyleValues/FlexFlowStyleValue.h>
  35. #include <LibWeb/CSS/StyleValues/FlexStyleValue.h>
  36. #include <LibWeb/CSS/StyleValues/FontStyleValue.h>
  37. #include <LibWeb/CSS/StyleValues/GridAreaShorthandStyleValue.h>
  38. #include <LibWeb/CSS/StyleValues/GridTrackPlacementShorthandStyleValue.h>
  39. #include <LibWeb/CSS/StyleValues/GridTrackPlacementStyleValue.h>
  40. #include <LibWeb/CSS/StyleValues/GridTrackSizeListShorthandStyleValue.h>
  41. #include <LibWeb/CSS/StyleValues/GridTrackSizeListStyleValue.h>
  42. #include <LibWeb/CSS/StyleValues/IdentifierStyleValue.h>
  43. #include <LibWeb/CSS/StyleValues/LengthStyleValue.h>
  44. #include <LibWeb/CSS/StyleValues/ListStyleStyleValue.h>
  45. #include <LibWeb/CSS/StyleValues/NumericStyleValue.h>
  46. #include <LibWeb/CSS/StyleValues/OverflowStyleValue.h>
  47. #include <LibWeb/CSS/StyleValues/PercentageStyleValue.h>
  48. #include <LibWeb/CSS/StyleValues/PositionStyleValue.h>
  49. #include <LibWeb/CSS/StyleValues/StyleValueList.h>
  50. #include <LibWeb/CSS/StyleValues/TextDecorationStyleValue.h>
  51. #include <LibWeb/CSS/StyleValues/UnresolvedStyleValue.h>
  52. #include <LibWeb/DOM/Document.h>
  53. #include <LibWeb/DOM/Element.h>
  54. #include <LibWeb/FontCache.h>
  55. #include <LibWeb/HTML/HTMLHtmlElement.h>
  56. #include <LibWeb/Loader/ResourceLoader.h>
  57. #include <LibWeb/Platform/FontPlugin.h>
  58. #include <stdio.h>
  59. namespace Web::CSS {
  60. StyleComputer::StyleComputer(DOM::Document& document)
  61. : m_document(document)
  62. {
  63. }
  64. StyleComputer::~StyleComputer() = default;
  65. class StyleComputer::FontLoader : public ResourceClient {
  66. public:
  67. explicit FontLoader(StyleComputer& style_computer, FlyString family_name, Vector<AK::URL> urls)
  68. : m_style_computer(style_computer)
  69. , m_family_name(move(family_name))
  70. , m_urls(move(urls))
  71. {
  72. start_loading_next_url();
  73. }
  74. virtual ~FontLoader() override { }
  75. virtual void resource_did_load() override
  76. {
  77. auto result = try_load_font();
  78. if (result.is_error())
  79. return start_loading_next_url();
  80. m_vector_font = result.release_value();
  81. m_style_computer.did_load_font(m_family_name);
  82. }
  83. virtual void resource_did_fail() override
  84. {
  85. }
  86. RefPtr<Gfx::Font> font_with_point_size(float point_size) const
  87. {
  88. if (!m_vector_font)
  89. return nullptr;
  90. if (auto it = m_cached_fonts.find(point_size); it != m_cached_fonts.end())
  91. return it->value;
  92. // FIXME: It might be nicer to have a global cap on the number of fonts we cache
  93. // instead of doing it at the per-font level like this.
  94. constexpr size_t max_cached_font_size_count = 64;
  95. if (m_cached_fonts.size() > max_cached_font_size_count)
  96. m_cached_fonts.remove(m_cached_fonts.begin());
  97. auto font = adopt_ref(*new Gfx::ScaledFont(*m_vector_font, point_size, point_size));
  98. m_cached_fonts.set(point_size, font);
  99. return font;
  100. }
  101. private:
  102. void start_loading_next_url()
  103. {
  104. if (m_urls.is_empty())
  105. return;
  106. LoadRequest request;
  107. request.set_url(m_urls.take_first());
  108. set_resource(ResourceLoader::the().load_resource(Resource::Type::Generic, request));
  109. }
  110. ErrorOr<NonnullRefPtr<Gfx::VectorFont>> try_load_font()
  111. {
  112. // FIXME: This could maybe use the format() provided in @font-face as well, since often the mime type is just application/octet-stream and we have to try every format
  113. auto mime_type = resource()->mime_type();
  114. if (mime_type == "font/ttf"sv || mime_type == "application/x-font-ttf"sv)
  115. return TRY(OpenType::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  116. if (mime_type == "font/woff"sv || mime_type == "application/font-woff"sv)
  117. return TRY(WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  118. auto ttf = OpenType::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  119. if (!ttf.is_error())
  120. return ttf.release_value();
  121. auto woff = WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  122. if (!woff.is_error())
  123. return woff.release_value();
  124. return ttf.release_error();
  125. }
  126. StyleComputer& m_style_computer;
  127. FlyString m_family_name;
  128. RefPtr<Gfx::VectorFont> m_vector_font;
  129. Vector<AK::URL> m_urls;
  130. HashMap<float, NonnullRefPtr<Gfx::ScaledFont>> mutable m_cached_fonts;
  131. };
  132. static CSSStyleSheet& default_stylesheet(DOM::Document const& document)
  133. {
  134. static JS::Handle<CSSStyleSheet> sheet;
  135. if (!sheet.cell()) {
  136. extern StringView default_stylesheet_source;
  137. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), default_stylesheet_source));
  138. }
  139. return *sheet;
  140. }
  141. static CSSStyleSheet& quirks_mode_stylesheet(DOM::Document const& document)
  142. {
  143. static JS::Handle<CSSStyleSheet> sheet;
  144. if (!sheet.cell()) {
  145. extern StringView quirks_mode_stylesheet_source;
  146. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), quirks_mode_stylesheet_source));
  147. }
  148. return *sheet;
  149. }
  150. template<typename Callback>
  151. void StyleComputer::for_each_stylesheet(CascadeOrigin cascade_origin, Callback callback) const
  152. {
  153. if (cascade_origin == CascadeOrigin::UserAgent) {
  154. callback(default_stylesheet(document()));
  155. if (document().in_quirks_mode())
  156. callback(quirks_mode_stylesheet(document()));
  157. }
  158. if (cascade_origin == CascadeOrigin::Author) {
  159. for (auto const& sheet : document().style_sheets().sheets())
  160. callback(*sheet);
  161. }
  162. }
  163. StyleComputer::RuleCache const& StyleComputer::rule_cache_for_cascade_origin(CascadeOrigin cascade_origin) const
  164. {
  165. switch (cascade_origin) {
  166. case CascadeOrigin::Author:
  167. return *m_author_rule_cache;
  168. case CascadeOrigin::UserAgent:
  169. return *m_user_agent_rule_cache;
  170. default:
  171. TODO();
  172. }
  173. }
  174. Vector<MatchingRule> StyleComputer::collect_matching_rules(DOM::Element const& element, CascadeOrigin cascade_origin, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  175. {
  176. auto const& rule_cache = rule_cache_for_cascade_origin(cascade_origin);
  177. Vector<MatchingRule> rules_to_run;
  178. auto add_rules_to_run = [&](Vector<MatchingRule> const& rules) {
  179. if (pseudo_element.has_value()) {
  180. for (auto& rule : rules) {
  181. if (rule.contains_pseudo_element)
  182. rules_to_run.append(rule);
  183. }
  184. } else {
  185. rules_to_run.extend(rules);
  186. }
  187. };
  188. for (auto const& class_name : element.class_names()) {
  189. if (auto it = rule_cache.rules_by_class.find(class_name); it != rule_cache.rules_by_class.end())
  190. add_rules_to_run(it->value);
  191. }
  192. if (auto id = element.get_attribute(HTML::AttributeNames::id); !id.is_null()) {
  193. if (auto it = rule_cache.rules_by_id.find(FlyString::from_deprecated_fly_string(id).release_value_but_fixme_should_propagate_errors()); it != rule_cache.rules_by_id.end())
  194. add_rules_to_run(it->value);
  195. }
  196. if (auto it = rule_cache.rules_by_tag_name.find(FlyString::from_deprecated_fly_string(element.local_name()).release_value_but_fixme_should_propagate_errors()); it != rule_cache.rules_by_tag_name.end())
  197. add_rules_to_run(it->value);
  198. add_rules_to_run(rule_cache.other_rules);
  199. Vector<MatchingRule> matching_rules;
  200. matching_rules.ensure_capacity(rules_to_run.size());
  201. for (auto const& rule_to_run : rules_to_run) {
  202. auto const& selector = rule_to_run.rule->selectors()[rule_to_run.selector_index];
  203. if (SelectorEngine::matches(selector, element, pseudo_element))
  204. matching_rules.append(rule_to_run);
  205. }
  206. return matching_rules;
  207. }
  208. static void sort_matching_rules(Vector<MatchingRule>& matching_rules)
  209. {
  210. quick_sort(matching_rules, [&](MatchingRule& a, MatchingRule& b) {
  211. auto const& a_selector = a.rule->selectors()[a.selector_index];
  212. auto const& b_selector = b.rule->selectors()[b.selector_index];
  213. auto a_specificity = a_selector->specificity();
  214. auto b_specificity = b_selector->specificity();
  215. if (a_selector->specificity() == b_selector->specificity()) {
  216. if (a.style_sheet_index == b.style_sheet_index)
  217. return a.rule_index < b.rule_index;
  218. return a.style_sheet_index < b.style_sheet_index;
  219. }
  220. return a_specificity < b_specificity;
  221. });
  222. }
  223. enum class Edge {
  224. Top,
  225. Right,
  226. Bottom,
  227. Left,
  228. All,
  229. };
  230. static bool contains(Edge a, Edge b)
  231. {
  232. return a == b || b == Edge::All;
  233. }
  234. static void set_property_expanding_shorthands(StyleProperties& style, CSS::PropertyID property_id, StyleValue const& value, DOM::Document& document)
  235. {
  236. auto assign_edge_values = [&style](PropertyID top_property, PropertyID right_property, PropertyID bottom_property, PropertyID left_property, auto const& values) {
  237. if (values.size() == 4) {
  238. style.set_property(top_property, values[0]);
  239. style.set_property(right_property, values[1]);
  240. style.set_property(bottom_property, values[2]);
  241. style.set_property(left_property, values[3]);
  242. } else if (values.size() == 3) {
  243. style.set_property(top_property, values[0]);
  244. style.set_property(right_property, values[1]);
  245. style.set_property(bottom_property, values[2]);
  246. style.set_property(left_property, values[1]);
  247. } else if (values.size() == 2) {
  248. style.set_property(top_property, values[0]);
  249. style.set_property(right_property, values[1]);
  250. style.set_property(bottom_property, values[0]);
  251. style.set_property(left_property, values[1]);
  252. } else if (values.size() == 1) {
  253. style.set_property(top_property, values[0]);
  254. style.set_property(right_property, values[0]);
  255. style.set_property(bottom_property, values[0]);
  256. style.set_property(left_property, values[0]);
  257. }
  258. };
  259. if (property_id == CSS::PropertyID::TextDecoration) {
  260. if (value.is_text_decoration()) {
  261. auto const& text_decoration = value.as_text_decoration();
  262. style.set_property(CSS::PropertyID::TextDecorationLine, text_decoration.line());
  263. style.set_property(CSS::PropertyID::TextDecorationThickness, text_decoration.thickness());
  264. style.set_property(CSS::PropertyID::TextDecorationStyle, text_decoration.style());
  265. style.set_property(CSS::PropertyID::TextDecorationColor, text_decoration.color());
  266. return;
  267. }
  268. style.set_property(CSS::PropertyID::TextDecorationLine, value);
  269. style.set_property(CSS::PropertyID::TextDecorationThickness, value);
  270. style.set_property(CSS::PropertyID::TextDecorationStyle, value);
  271. style.set_property(CSS::PropertyID::TextDecorationColor, value);
  272. return;
  273. }
  274. if (property_id == CSS::PropertyID::Overflow) {
  275. if (value.is_overflow()) {
  276. auto const& overflow = value.as_overflow();
  277. style.set_property(CSS::PropertyID::OverflowX, overflow.overflow_x());
  278. style.set_property(CSS::PropertyID::OverflowY, overflow.overflow_y());
  279. return;
  280. }
  281. style.set_property(CSS::PropertyID::OverflowX, value);
  282. style.set_property(CSS::PropertyID::OverflowY, value);
  283. return;
  284. }
  285. if (property_id == CSS::PropertyID::Border) {
  286. set_property_expanding_shorthands(style, CSS::PropertyID::BorderTop, value, document);
  287. set_property_expanding_shorthands(style, CSS::PropertyID::BorderRight, value, document);
  288. set_property_expanding_shorthands(style, CSS::PropertyID::BorderBottom, value, document);
  289. set_property_expanding_shorthands(style, CSS::PropertyID::BorderLeft, value, document);
  290. // FIXME: Also reset border-image, in line with the spec: https://www.w3.org/TR/css-backgrounds-3/#border-shorthands
  291. return;
  292. }
  293. if (property_id == CSS::PropertyID::BorderRadius) {
  294. if (value.is_border_radius_shorthand()) {
  295. auto const& shorthand = value.as_border_radius_shorthand();
  296. style.set_property(CSS::PropertyID::BorderTopLeftRadius, shorthand.top_left());
  297. style.set_property(CSS::PropertyID::BorderTopRightRadius, shorthand.top_right());
  298. style.set_property(CSS::PropertyID::BorderBottomRightRadius, shorthand.bottom_right());
  299. style.set_property(CSS::PropertyID::BorderBottomLeftRadius, shorthand.bottom_left());
  300. return;
  301. }
  302. style.set_property(CSS::PropertyID::BorderTopLeftRadius, value);
  303. style.set_property(CSS::PropertyID::BorderTopRightRadius, value);
  304. style.set_property(CSS::PropertyID::BorderBottomRightRadius, value);
  305. style.set_property(CSS::PropertyID::BorderBottomLeftRadius, value);
  306. return;
  307. }
  308. if (property_id == CSS::PropertyID::BorderTop
  309. || property_id == CSS::PropertyID::BorderRight
  310. || property_id == CSS::PropertyID::BorderBottom
  311. || property_id == CSS::PropertyID::BorderLeft) {
  312. Edge edge = Edge::All;
  313. switch (property_id) {
  314. case CSS::PropertyID::BorderTop:
  315. edge = Edge::Top;
  316. break;
  317. case CSS::PropertyID::BorderRight:
  318. edge = Edge::Right;
  319. break;
  320. case CSS::PropertyID::BorderBottom:
  321. edge = Edge::Bottom;
  322. break;
  323. case CSS::PropertyID::BorderLeft:
  324. edge = Edge::Left;
  325. break;
  326. default:
  327. break;
  328. }
  329. if (value.is_border()) {
  330. auto const& border = value.as_border();
  331. if (contains(Edge::Top, edge)) {
  332. style.set_property(PropertyID::BorderTopWidth, border.border_width());
  333. style.set_property(PropertyID::BorderTopStyle, border.border_style());
  334. style.set_property(PropertyID::BorderTopColor, border.border_color());
  335. }
  336. if (contains(Edge::Right, edge)) {
  337. style.set_property(PropertyID::BorderRightWidth, border.border_width());
  338. style.set_property(PropertyID::BorderRightStyle, border.border_style());
  339. style.set_property(PropertyID::BorderRightColor, border.border_color());
  340. }
  341. if (contains(Edge::Bottom, edge)) {
  342. style.set_property(PropertyID::BorderBottomWidth, border.border_width());
  343. style.set_property(PropertyID::BorderBottomStyle, border.border_style());
  344. style.set_property(PropertyID::BorderBottomColor, border.border_color());
  345. }
  346. if (contains(Edge::Left, edge)) {
  347. style.set_property(PropertyID::BorderLeftWidth, border.border_width());
  348. style.set_property(PropertyID::BorderLeftStyle, border.border_style());
  349. style.set_property(PropertyID::BorderLeftColor, border.border_color());
  350. }
  351. return;
  352. }
  353. return;
  354. }
  355. if (property_id == CSS::PropertyID::BorderStyle) {
  356. if (value.is_value_list()) {
  357. auto const& values_list = value.as_value_list();
  358. assign_edge_values(PropertyID::BorderTopStyle, PropertyID::BorderRightStyle, PropertyID::BorderBottomStyle, PropertyID::BorderLeftStyle, values_list.values());
  359. return;
  360. }
  361. style.set_property(CSS::PropertyID::BorderTopStyle, value);
  362. style.set_property(CSS::PropertyID::BorderRightStyle, value);
  363. style.set_property(CSS::PropertyID::BorderBottomStyle, value);
  364. style.set_property(CSS::PropertyID::BorderLeftStyle, value);
  365. return;
  366. }
  367. if (property_id == CSS::PropertyID::BorderWidth) {
  368. if (value.is_value_list()) {
  369. auto const& values_list = value.as_value_list();
  370. assign_edge_values(PropertyID::BorderTopWidth, PropertyID::BorderRightWidth, PropertyID::BorderBottomWidth, PropertyID::BorderLeftWidth, values_list.values());
  371. return;
  372. }
  373. style.set_property(CSS::PropertyID::BorderTopWidth, value);
  374. style.set_property(CSS::PropertyID::BorderRightWidth, value);
  375. style.set_property(CSS::PropertyID::BorderBottomWidth, value);
  376. style.set_property(CSS::PropertyID::BorderLeftWidth, value);
  377. return;
  378. }
  379. if (property_id == CSS::PropertyID::BorderColor) {
  380. if (value.is_value_list()) {
  381. auto const& values_list = value.as_value_list();
  382. assign_edge_values(PropertyID::BorderTopColor, PropertyID::BorderRightColor, PropertyID::BorderBottomColor, PropertyID::BorderLeftColor, values_list.values());
  383. return;
  384. }
  385. style.set_property(CSS::PropertyID::BorderTopColor, value);
  386. style.set_property(CSS::PropertyID::BorderRightColor, value);
  387. style.set_property(CSS::PropertyID::BorderBottomColor, value);
  388. style.set_property(CSS::PropertyID::BorderLeftColor, value);
  389. return;
  390. }
  391. if (property_id == CSS::PropertyID::Background) {
  392. if (value.is_background()) {
  393. auto const& background = value.as_background();
  394. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundColor, background.color(), document);
  395. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundImage, background.image(), document);
  396. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundPosition, background.position(), document);
  397. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundSize, background.size(), document);
  398. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundRepeat, background.repeat(), document);
  399. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundAttachment, background.attachment(), document);
  400. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundOrigin, background.origin(), document);
  401. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundClip, background.clip(), document);
  402. return;
  403. }
  404. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundColor, value, document);
  405. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundImage, value, document);
  406. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundPosition, value, document);
  407. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundSize, value, document);
  408. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundRepeat, value, document);
  409. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundAttachment, value, document);
  410. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundOrigin, value, document);
  411. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundClip, value, document);
  412. return;
  413. }
  414. if (property_id == CSS::PropertyID::BackgroundPosition) {
  415. if (value.is_position()) {
  416. auto const& position = value.as_position();
  417. style.set_property(CSS::PropertyID::BackgroundPositionX, position.edge_x());
  418. style.set_property(CSS::PropertyID::BackgroundPositionY, position.edge_y());
  419. } else if (value.is_value_list()) {
  420. // Expand background-position layer list into separate lists for x and y positions:
  421. auto const& values_list = value.as_value_list();
  422. StyleValueVector x_positions {};
  423. StyleValueVector y_positions {};
  424. x_positions.ensure_capacity(values_list.size());
  425. y_positions.ensure_capacity(values_list.size());
  426. for (auto& layer : values_list.values()) {
  427. if (layer->is_position()) {
  428. auto const& position = layer->as_position();
  429. x_positions.unchecked_append(position.edge_x());
  430. y_positions.unchecked_append(position.edge_y());
  431. } else {
  432. x_positions.unchecked_append(layer);
  433. y_positions.unchecked_append(layer);
  434. }
  435. }
  436. style.set_property(CSS::PropertyID::BackgroundPositionX, StyleValueList::create(move(x_positions), values_list.separator()));
  437. style.set_property(CSS::PropertyID::BackgroundPositionY, StyleValueList::create(move(y_positions), values_list.separator()));
  438. } else {
  439. style.set_property(CSS::PropertyID::BackgroundPositionX, value);
  440. style.set_property(CSS::PropertyID::BackgroundPositionY, value);
  441. }
  442. return;
  443. }
  444. if (property_id == CSS::PropertyID::Margin) {
  445. if (value.is_value_list()) {
  446. auto const& values_list = value.as_value_list();
  447. assign_edge_values(PropertyID::MarginTop, PropertyID::MarginRight, PropertyID::MarginBottom, PropertyID::MarginLeft, values_list.values());
  448. return;
  449. }
  450. style.set_property(CSS::PropertyID::MarginTop, value);
  451. style.set_property(CSS::PropertyID::MarginRight, value);
  452. style.set_property(CSS::PropertyID::MarginBottom, value);
  453. style.set_property(CSS::PropertyID::MarginLeft, value);
  454. return;
  455. }
  456. if (property_id == CSS::PropertyID::Padding) {
  457. if (value.is_value_list()) {
  458. auto const& values_list = value.as_value_list();
  459. assign_edge_values(PropertyID::PaddingTop, PropertyID::PaddingRight, PropertyID::PaddingBottom, PropertyID::PaddingLeft, values_list.values());
  460. return;
  461. }
  462. style.set_property(CSS::PropertyID::PaddingTop, value);
  463. style.set_property(CSS::PropertyID::PaddingRight, value);
  464. style.set_property(CSS::PropertyID::PaddingBottom, value);
  465. style.set_property(CSS::PropertyID::PaddingLeft, value);
  466. return;
  467. }
  468. if (property_id == CSS::PropertyID::ListStyle) {
  469. if (value.is_list_style()) {
  470. auto const& list_style = value.as_list_style();
  471. style.set_property(CSS::PropertyID::ListStylePosition, list_style.position());
  472. style.set_property(CSS::PropertyID::ListStyleImage, list_style.image());
  473. style.set_property(CSS::PropertyID::ListStyleType, list_style.style_type());
  474. return;
  475. }
  476. style.set_property(CSS::PropertyID::ListStylePosition, value);
  477. style.set_property(CSS::PropertyID::ListStyleImage, value);
  478. style.set_property(CSS::PropertyID::ListStyleType, value);
  479. return;
  480. }
  481. if (property_id == CSS::PropertyID::Font) {
  482. if (value.is_font()) {
  483. auto const& font_shorthand = value.as_font();
  484. style.set_property(CSS::PropertyID::FontSize, font_shorthand.font_size());
  485. style.set_property(CSS::PropertyID::FontFamily, font_shorthand.font_families());
  486. style.set_property(CSS::PropertyID::FontStretch, font_shorthand.font_stretch());
  487. style.set_property(CSS::PropertyID::FontStyle, font_shorthand.font_style());
  488. style.set_property(CSS::PropertyID::FontWeight, font_shorthand.font_weight());
  489. style.set_property(CSS::PropertyID::LineHeight, font_shorthand.line_height());
  490. // FIXME: Implement font-variant
  491. return;
  492. }
  493. style.set_property(CSS::PropertyID::FontStretch, value);
  494. style.set_property(CSS::PropertyID::FontSize, value);
  495. style.set_property(CSS::PropertyID::FontFamily, value);
  496. style.set_property(CSS::PropertyID::FontStyle, value);
  497. style.set_property(CSS::PropertyID::FontWeight, value);
  498. style.set_property(CSS::PropertyID::LineHeight, value);
  499. // FIXME: Implement font-variant
  500. return;
  501. }
  502. if (property_id == CSS::PropertyID::Flex) {
  503. if (value.is_flex()) {
  504. auto const& flex = value.as_flex();
  505. style.set_property(CSS::PropertyID::FlexGrow, flex.grow());
  506. style.set_property(CSS::PropertyID::FlexShrink, flex.shrink());
  507. style.set_property(CSS::PropertyID::FlexBasis, flex.basis());
  508. return;
  509. }
  510. style.set_property(CSS::PropertyID::FlexGrow, value);
  511. style.set_property(CSS::PropertyID::FlexShrink, value);
  512. style.set_property(CSS::PropertyID::FlexBasis, value);
  513. return;
  514. }
  515. if (property_id == CSS::PropertyID::FlexFlow) {
  516. if (value.is_flex_flow()) {
  517. auto const& flex_flow = value.as_flex_flow();
  518. style.set_property(CSS::PropertyID::FlexDirection, flex_flow.flex_direction());
  519. style.set_property(CSS::PropertyID::FlexWrap, flex_flow.flex_wrap());
  520. return;
  521. }
  522. style.set_property(CSS::PropertyID::FlexDirection, value);
  523. style.set_property(CSS::PropertyID::FlexWrap, value);
  524. return;
  525. }
  526. if (property_id == CSS::PropertyID::GridArea) {
  527. if (value.is_grid_area_shorthand()) {
  528. auto const& shorthand = value.as_grid_area_shorthand();
  529. style.set_property(CSS::PropertyID::GridRowStart, shorthand.row_start());
  530. style.set_property(CSS::PropertyID::GridColumnStart, shorthand.column_start());
  531. style.set_property(CSS::PropertyID::GridRowEnd, shorthand.row_end());
  532. style.set_property(CSS::PropertyID::GridColumnEnd, shorthand.column_end());
  533. return;
  534. }
  535. style.set_property(CSS::PropertyID::GridRowStart, value);
  536. style.set_property(CSS::PropertyID::GridColumnStart, value);
  537. style.set_property(CSS::PropertyID::GridRowEnd, value);
  538. style.set_property(CSS::PropertyID::GridColumnEnd, value);
  539. return;
  540. }
  541. if (property_id == CSS::PropertyID::GridColumn) {
  542. if (value.is_grid_track_placement_shorthand()) {
  543. auto const& shorthand = value.as_grid_track_placement_shorthand();
  544. style.set_property(CSS::PropertyID::GridColumnStart, shorthand.start());
  545. style.set_property(CSS::PropertyID::GridColumnEnd, shorthand.end());
  546. return;
  547. }
  548. style.set_property(CSS::PropertyID::GridColumnStart, value);
  549. style.set_property(CSS::PropertyID::GridColumnEnd, value);
  550. return;
  551. }
  552. if (property_id == CSS::PropertyID::GridRow) {
  553. if (value.is_grid_track_placement_shorthand()) {
  554. auto const& shorthand = value.as_grid_track_placement_shorthand();
  555. style.set_property(CSS::PropertyID::GridRowStart, shorthand.start());
  556. style.set_property(CSS::PropertyID::GridRowEnd, shorthand.end());
  557. return;
  558. }
  559. style.set_property(CSS::PropertyID::GridRowStart, value);
  560. style.set_property(CSS::PropertyID::GridRowEnd, value);
  561. return;
  562. }
  563. if (property_id == CSS::PropertyID::GridTemplate) {
  564. if (value.is_grid_track_size_list_shorthand()) {
  565. auto const& shorthand = value.as_grid_track_size_list_shorthand();
  566. style.set_property(CSS::PropertyID::GridTemplateAreas, shorthand.areas());
  567. style.set_property(CSS::PropertyID::GridTemplateRows, shorthand.rows());
  568. style.set_property(CSS::PropertyID::GridTemplateColumns, shorthand.columns());
  569. return;
  570. }
  571. style.set_property(CSS::PropertyID::GridTemplateAreas, value);
  572. style.set_property(CSS::PropertyID::GridTemplateRows, value);
  573. style.set_property(CSS::PropertyID::GridTemplateColumns, value);
  574. return;
  575. }
  576. if (property_id == CSS::PropertyID::Gap || property_id == CSS::PropertyID::GridGap) {
  577. if (value.is_value_list()) {
  578. auto const& values_list = value.as_value_list();
  579. style.set_property(CSS::PropertyID::RowGap, values_list.values()[0]);
  580. style.set_property(CSS::PropertyID::ColumnGap, values_list.values()[1]);
  581. return;
  582. }
  583. style.set_property(CSS::PropertyID::RowGap, value);
  584. style.set_property(CSS::PropertyID::ColumnGap, value);
  585. return;
  586. }
  587. if (property_id == CSS::PropertyID::RowGap || property_id == CSS::PropertyID::GridRowGap) {
  588. style.set_property(CSS::PropertyID::RowGap, value);
  589. return;
  590. }
  591. if (property_id == CSS::PropertyID::ColumnGap || property_id == CSS::PropertyID::GridColumnGap) {
  592. style.set_property(CSS::PropertyID::ColumnGap, value);
  593. return;
  594. }
  595. style.set_property(property_id, value);
  596. }
  597. static RefPtr<StyleValue const> get_custom_property(DOM::Element const& element, FlyString const& custom_property_name)
  598. {
  599. for (auto const* current_element = &element; current_element; current_element = current_element->parent_element()) {
  600. if (auto it = current_element->custom_properties().find(custom_property_name.to_string().to_deprecated_string()); it != current_element->custom_properties().end())
  601. return it->value.value;
  602. }
  603. return nullptr;
  604. }
  605. bool StyleComputer::expand_variables(DOM::Element& element, StringView property_name, HashMap<FlyString, NonnullRefPtr<PropertyDependencyNode>>& dependencies, Parser::TokenStream<Parser::ComponentValue>& source, Vector<Parser::ComponentValue>& dest) const
  606. {
  607. // Arbitrary large value chosen to avoid the billion-laughs attack.
  608. // https://www.w3.org/TR/css-variables-1/#long-variables
  609. const size_t MAX_VALUE_COUNT = 16384;
  610. if (source.remaining_token_count() + dest.size() > MAX_VALUE_COUNT) {
  611. dbgln("Stopped expanding CSS variables: maximum length reached.");
  612. return false;
  613. }
  614. auto get_dependency_node = [&](FlyString name) -> NonnullRefPtr<PropertyDependencyNode> {
  615. if (auto existing = dependencies.get(name); existing.has_value())
  616. return *existing.value();
  617. auto new_node = PropertyDependencyNode::create(name.to_string());
  618. dependencies.set(name, new_node);
  619. return new_node;
  620. };
  621. while (source.has_next_token()) {
  622. auto const& value = source.next_token();
  623. if (!value.is_function()) {
  624. dest.empend(value);
  625. continue;
  626. }
  627. if (!value.function().name().equals_ignoring_ascii_case("var"sv)) {
  628. auto const& source_function = value.function();
  629. Vector<Parser::ComponentValue> function_values;
  630. Parser::TokenStream source_function_contents { source_function.values() };
  631. if (!expand_variables(element, property_name, dependencies, source_function_contents, function_values))
  632. return false;
  633. NonnullRefPtr<Parser::Function> function = Parser::Function::create(FlyString::from_utf8(source_function.name()).release_value_but_fixme_should_propagate_errors(), move(function_values));
  634. dest.empend(function);
  635. continue;
  636. }
  637. Parser::TokenStream var_contents { value.function().values() };
  638. var_contents.skip_whitespace();
  639. if (!var_contents.has_next_token())
  640. return false;
  641. auto const& custom_property_name_token = var_contents.next_token();
  642. if (!custom_property_name_token.is(Parser::Token::Type::Ident))
  643. return false;
  644. auto custom_property_name = custom_property_name_token.token().ident();
  645. if (!custom_property_name.starts_with("--"sv))
  646. return false;
  647. // Detect dependency cycles. https://www.w3.org/TR/css-variables-1/#cycles
  648. // We do not do this by the spec, since we are not keeping a graph of var dependencies around,
  649. // but rebuilding it every time.
  650. if (custom_property_name == property_name)
  651. return false;
  652. auto parent = get_dependency_node(FlyString::from_utf8(property_name).release_value_but_fixme_should_propagate_errors());
  653. auto child = get_dependency_node(FlyString::from_utf8(custom_property_name).release_value_but_fixme_should_propagate_errors());
  654. parent->add_child(child);
  655. if (parent->has_cycles())
  656. return false;
  657. if (auto custom_property_value = get_custom_property(element, FlyString::from_utf8(custom_property_name).release_value_but_fixme_should_propagate_errors())) {
  658. VERIFY(custom_property_value->is_unresolved());
  659. Parser::TokenStream custom_property_tokens { custom_property_value->as_unresolved().values() };
  660. if (!expand_variables(element, custom_property_name, dependencies, custom_property_tokens, dest))
  661. return false;
  662. continue;
  663. }
  664. // Use the provided fallback value, if any.
  665. var_contents.skip_whitespace();
  666. if (var_contents.has_next_token()) {
  667. auto const& comma_token = var_contents.next_token();
  668. if (!comma_token.is(Parser::Token::Type::Comma))
  669. return false;
  670. var_contents.skip_whitespace();
  671. if (!expand_variables(element, property_name, dependencies, var_contents, dest))
  672. return false;
  673. }
  674. }
  675. return true;
  676. }
  677. bool StyleComputer::expand_unresolved_values(DOM::Element& element, StringView property_name, Parser::TokenStream<Parser::ComponentValue>& source, Vector<Parser::ComponentValue>& dest) const
  678. {
  679. // FIXME: Do this better!
  680. // We build a copy of the tree of ComponentValues, with all var()s and attr()s replaced with their contents.
  681. // This is a very naive solution, and we could do better if the CSS Parser could accept tokens one at a time.
  682. while (source.has_next_token()) {
  683. auto const& value = source.next_token();
  684. if (value.is_function()) {
  685. if (value.function().name().equals_ignoring_ascii_case("attr"sv)) {
  686. // https://drafts.csswg.org/css-values-5/#attr-substitution
  687. Parser::TokenStream attr_contents { value.function().values() };
  688. attr_contents.skip_whitespace();
  689. if (!attr_contents.has_next_token())
  690. return false;
  691. auto const& attr_name_token = attr_contents.next_token();
  692. if (!attr_name_token.is(Parser::Token::Type::Ident))
  693. return false;
  694. auto attr_name = attr_name_token.token().ident();
  695. auto attr_value = element.get_attribute(attr_name);
  696. // 1. If the attr() function has a substitution value, replace the attr() function by the substitution value.
  697. if (!attr_value.is_null()) {
  698. // FIXME: attr() should also accept an optional type argument, not just strings.
  699. dest.empend(Parser::Token::of_string(FlyString::from_deprecated_fly_string(attr_value).release_value_but_fixme_should_propagate_errors()));
  700. continue;
  701. }
  702. // 2. Otherwise, if the attr() function has a fallback value as its last argument, replace the attr() function by the fallback value.
  703. // If there are any var() or attr() references in the fallback, substitute them as well.
  704. attr_contents.skip_whitespace();
  705. if (attr_contents.has_next_token()) {
  706. auto const& comma_token = attr_contents.next_token();
  707. if (!comma_token.is(Parser::Token::Type::Comma))
  708. return false;
  709. attr_contents.skip_whitespace();
  710. if (!expand_unresolved_values(element, property_name, attr_contents, dest))
  711. return false;
  712. continue;
  713. }
  714. // 3. Otherwise, the property containing the attr() function is invalid at computed-value time.
  715. return false;
  716. }
  717. if (value.function().name().equals_ignoring_ascii_case("calc"sv)) {
  718. auto const& calc_function = value.function();
  719. if (auto calc_value = CSS::Parser::Parser::parse_calculated_value({}, Parser::ParsingContext { document() }, calc_function.values())) {
  720. switch (calc_value->resolved_type()) {
  721. case CalculatedStyleValue::ResolvedType::Integer: {
  722. auto resolved_value = calc_value->resolve_integer();
  723. dest.empend(Parser::Token::create_number(resolved_value.value()));
  724. continue;
  725. }
  726. case CalculatedStyleValue::ResolvedType::Percentage: {
  727. auto resolved_value = calc_value->resolve_percentage();
  728. dest.empend(Parser::Token::create_percentage(resolved_value.value().value()));
  729. continue;
  730. }
  731. default:
  732. dbgln("FIXME: Unimplemented calc() expansion: {}", calc_value->to_string());
  733. break;
  734. }
  735. }
  736. }
  737. auto const& source_function = value.function();
  738. Vector<Parser::ComponentValue> function_values;
  739. Parser::TokenStream source_function_contents { source_function.values() };
  740. if (!expand_unresolved_values(element, property_name, source_function_contents, function_values))
  741. return false;
  742. // FIXME: This would be much nicer if we could access the source_function's FlyString value directly.
  743. NonnullRefPtr<Parser::Function> function = Parser::Function::create(FlyString::from_utf8(source_function.name()).release_value_but_fixme_should_propagate_errors(), move(function_values));
  744. dest.empend(function);
  745. continue;
  746. }
  747. if (value.is_block()) {
  748. auto const& source_block = value.block();
  749. Parser::TokenStream source_block_values { source_block.values() };
  750. Vector<Parser::ComponentValue> block_values;
  751. if (!expand_unresolved_values(element, property_name, source_block_values, block_values))
  752. return false;
  753. NonnullRefPtr<Parser::Block> block = Parser::Block::create(source_block.token(), move(block_values));
  754. dest.empend(move(block));
  755. continue;
  756. }
  757. dest.empend(value.token());
  758. }
  759. return true;
  760. }
  761. RefPtr<StyleValue> StyleComputer::resolve_unresolved_style_value(DOM::Element& element, PropertyID property_id, UnresolvedStyleValue const& unresolved) const
  762. {
  763. // Unresolved always contains a var() or attr(), unless it is a custom property's value, in which case we shouldn't be trying
  764. // to produce a different StyleValue from it.
  765. VERIFY(unresolved.contains_var_or_attr());
  766. Parser::TokenStream unresolved_values_without_variables_expanded { unresolved.values() };
  767. Vector<Parser::ComponentValue> values_with_variables_expanded;
  768. HashMap<FlyString, NonnullRefPtr<PropertyDependencyNode>> dependencies;
  769. if (!expand_variables(element, string_from_property_id(property_id), dependencies, unresolved_values_without_variables_expanded, values_with_variables_expanded))
  770. return {};
  771. Parser::TokenStream unresolved_values_with_variables_expanded { values_with_variables_expanded };
  772. Vector<Parser::ComponentValue> expanded_values;
  773. if (!expand_unresolved_values(element, string_from_property_id(property_id), unresolved_values_with_variables_expanded, expanded_values))
  774. return {};
  775. if (auto parsed_value = Parser::Parser::parse_css_value({}, Parser::ParsingContext { document() }, property_id, expanded_values))
  776. return parsed_value.release_nonnull();
  777. return {};
  778. }
  779. void StyleComputer::cascade_declarations(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, Vector<MatchingRule> const& matching_rules, CascadeOrigin cascade_origin, Important important) const
  780. {
  781. for (auto const& match : matching_rules) {
  782. for (auto const& property : verify_cast<PropertyOwningCSSStyleDeclaration>(match.rule->declaration()).properties()) {
  783. if (important != property.important)
  784. continue;
  785. auto property_value = property.value;
  786. if (property.value->is_unresolved()) {
  787. if (auto resolved = resolve_unresolved_style_value(element, property.property_id, property.value->as_unresolved()))
  788. property_value = resolved.release_nonnull();
  789. }
  790. if (!property_value->is_unresolved())
  791. set_property_expanding_shorthands(style, property.property_id, property_value, m_document);
  792. }
  793. }
  794. if (cascade_origin == CascadeOrigin::Author && !pseudo_element.has_value()) {
  795. if (auto const* inline_style = verify_cast<ElementInlineCSSStyleDeclaration>(element.inline_style())) {
  796. for (auto const& property : inline_style->properties()) {
  797. if (important != property.important)
  798. continue;
  799. auto property_value = property.value;
  800. if (property.value->is_unresolved()) {
  801. if (auto resolved = resolve_unresolved_style_value(element, property.property_id, property.value->as_unresolved()))
  802. property_value = resolved.release_nonnull();
  803. }
  804. if (!property_value->is_unresolved())
  805. set_property_expanding_shorthands(style, property.property_id, property_value, m_document);
  806. }
  807. }
  808. }
  809. }
  810. static ErrorOr<void> cascade_custom_properties(DOM::Element& element, Vector<MatchingRule> const& matching_rules)
  811. {
  812. size_t needed_capacity = 0;
  813. for (auto const& matching_rule : matching_rules)
  814. needed_capacity += verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties().size();
  815. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style()))
  816. needed_capacity += inline_style->custom_properties().size();
  817. HashMap<DeprecatedFlyString, StyleProperty> custom_properties;
  818. TRY(custom_properties.try_ensure_capacity(needed_capacity));
  819. for (auto const& matching_rule : matching_rules) {
  820. for (auto const& it : verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties())
  821. custom_properties.set(it.key, it.value);
  822. }
  823. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style())) {
  824. for (auto const& it : inline_style->custom_properties())
  825. custom_properties.set(it.key, it.value);
  826. }
  827. element.set_custom_properties(move(custom_properties));
  828. return {};
  829. }
  830. // https://www.w3.org/TR/css-cascade/#cascading
  831. ErrorOr<void> StyleComputer::compute_cascaded_values(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, bool& did_match_any_pseudo_element_rules, ComputeStyleMode mode) const
  832. {
  833. // First, we collect all the CSS rules whose selectors match `element`:
  834. MatchingRuleSet matching_rule_set;
  835. matching_rule_set.user_agent_rules = collect_matching_rules(element, CascadeOrigin::UserAgent, pseudo_element);
  836. sort_matching_rules(matching_rule_set.user_agent_rules);
  837. matching_rule_set.author_rules = collect_matching_rules(element, CascadeOrigin::Author, pseudo_element);
  838. sort_matching_rules(matching_rule_set.author_rules);
  839. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded) {
  840. VERIFY(pseudo_element.has_value());
  841. if (matching_rule_set.author_rules.is_empty() && matching_rule_set.user_agent_rules.is_empty()) {
  842. did_match_any_pseudo_element_rules = false;
  843. return {};
  844. }
  845. did_match_any_pseudo_element_rules = true;
  846. }
  847. // Then we resolve all the CSS custom properties ("variables") for this element:
  848. // FIXME: Look into how custom properties should interact with pseudo elements and support that properly.
  849. if (!pseudo_element.has_value())
  850. TRY(cascade_custom_properties(element, matching_rule_set.author_rules));
  851. // Then we apply the declarations from the matched rules in cascade order:
  852. // Normal user agent declarations
  853. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::No);
  854. // FIXME: Normal user declarations
  855. // Author presentational hints (NOTE: The spec doesn't say exactly how to prioritize these.)
  856. if (!pseudo_element.has_value())
  857. element.apply_presentational_hints(style);
  858. // Normal author declarations
  859. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::No);
  860. // FIXME: Animation declarations [css-animations-1]
  861. // Important author declarations
  862. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::Yes);
  863. // FIXME: Important user declarations
  864. // Important user agent declarations
  865. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::Yes);
  866. // FIXME: Transition declarations [css-transitions-1]
  867. return {};
  868. }
  869. static DOM::Element const* element_to_inherit_style_from(DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element)
  870. {
  871. // Pseudo-elements treat their originating element as their parent.
  872. DOM::Element const* parent_element = nullptr;
  873. if (pseudo_element.has_value()) {
  874. parent_element = element;
  875. } else if (element) {
  876. parent_element = element->parent_or_shadow_host_element();
  877. }
  878. return parent_element;
  879. }
  880. static NonnullRefPtr<StyleValue const> get_inherit_value(JS::Realm& initial_value_context_realm, CSS::PropertyID property_id, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element)
  881. {
  882. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  883. if (!parent_element || !parent_element->computed_css_values())
  884. return property_initial_value(initial_value_context_realm, property_id);
  885. return parent_element->computed_css_values()->property(property_id);
  886. };
  887. void StyleComputer::compute_defaulted_property_value(StyleProperties& style, DOM::Element const* element, CSS::PropertyID property_id, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  888. {
  889. // FIXME: If we don't know the correct initial value for a property, we fall back to InitialStyleValue.
  890. auto& value_slot = style.m_property_values[to_underlying(property_id)];
  891. if (!value_slot) {
  892. if (is_inherited_property(property_id))
  893. style.m_property_values[to_underlying(property_id)] = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  894. else
  895. style.m_property_values[to_underlying(property_id)] = property_initial_value(document().realm(), property_id);
  896. return;
  897. }
  898. if (value_slot->is_initial()) {
  899. value_slot = property_initial_value(document().realm(), property_id);
  900. return;
  901. }
  902. if (value_slot->is_inherit()) {
  903. value_slot = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  904. return;
  905. }
  906. // https://www.w3.org/TR/css-cascade-4/#inherit-initial
  907. // If the cascaded value of a property is the unset keyword,
  908. if (value_slot->is_unset()) {
  909. if (is_inherited_property(property_id)) {
  910. // then if it is an inherited property, this is treated as inherit,
  911. value_slot = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  912. } else {
  913. // and if it is not, this is treated as initial.
  914. value_slot = property_initial_value(document().realm(), property_id);
  915. }
  916. }
  917. }
  918. // https://www.w3.org/TR/css-cascade/#defaulting
  919. void StyleComputer::compute_defaulted_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  920. {
  921. // Walk the list of all known CSS properties and:
  922. // - Add them to `style` if they are missing.
  923. // - Resolve `inherit` and `initial` as needed.
  924. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  925. auto property_id = (CSS::PropertyID)i;
  926. compute_defaulted_property_value(style, element, property_id, pseudo_element);
  927. }
  928. }
  929. Length::FontMetrics StyleComputer::root_element_font_metrics() const
  930. {
  931. Length::FontMetrics const default_font_metrics { 16, Gfx::FontDatabase::default_font().pixel_metrics(), 16 };
  932. auto const* root_element = m_document->first_child_of_type<HTML::HTMLHtmlElement>();
  933. if (!root_element)
  934. return default_font_metrics;
  935. auto const* computed_root_style = root_element->computed_css_values();
  936. if (!computed_root_style)
  937. return default_font_metrics;
  938. auto root_value = computed_root_style->property(CSS::PropertyID::FontSize);
  939. auto font_pixel_metrics = computed_root_style->computed_font().pixel_metrics();
  940. Length::FontMetrics font_metrics { default_font_metrics.font_size, font_pixel_metrics, font_pixel_metrics.line_spacing() };
  941. font_metrics.font_size = root_value->to_length().to_px(viewport_rect(), font_metrics, font_metrics);
  942. font_metrics.line_height = computed_root_style->line_height(viewport_rect(), font_metrics, font_metrics);
  943. return font_metrics;
  944. }
  945. void StyleComputer::compute_font(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  946. {
  947. // To compute the font, first ensure that we've defaulted the relevant CSS font properties.
  948. // FIXME: This should be more sophisticated.
  949. compute_defaulted_property_value(style, element, CSS::PropertyID::FontFamily, pseudo_element);
  950. compute_defaulted_property_value(style, element, CSS::PropertyID::FontSize, pseudo_element);
  951. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStretch, pseudo_element);
  952. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStyle, pseudo_element);
  953. compute_defaulted_property_value(style, element, CSS::PropertyID::FontWeight, pseudo_element);
  954. compute_defaulted_property_value(style, element, CSS::PropertyID::LineHeight, pseudo_element);
  955. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  956. auto font_size = style.property(CSS::PropertyID::FontSize);
  957. auto font_style = style.property(CSS::PropertyID::FontStyle);
  958. auto font_weight = style.property(CSS::PropertyID::FontWeight);
  959. auto font_stretch = style.property(CSS::PropertyID::FontStretch);
  960. int width = Gfx::FontWidth::Normal;
  961. if (font_stretch->is_identifier()) {
  962. switch (static_cast<IdentifierStyleValue const&>(*font_stretch).id()) {
  963. case CSS::ValueID::UltraCondensed:
  964. width = Gfx::FontWidth::UltraCondensed;
  965. break;
  966. case CSS::ValueID::ExtraCondensed:
  967. width = Gfx::FontWidth::ExtraCondensed;
  968. break;
  969. case CSS::ValueID::Condensed:
  970. width = Gfx::FontWidth::Condensed;
  971. break;
  972. case CSS::ValueID::SemiCondensed:
  973. width = Gfx::FontWidth::SemiCondensed;
  974. break;
  975. case CSS::ValueID::Normal:
  976. width = Gfx::FontWidth::Normal;
  977. break;
  978. case CSS::ValueID::SemiExpanded:
  979. width = Gfx::FontWidth::SemiExpanded;
  980. break;
  981. case CSS::ValueID::Expanded:
  982. width = Gfx::FontWidth::Expanded;
  983. break;
  984. case CSS::ValueID::ExtraExpanded:
  985. width = Gfx::FontWidth::ExtraExpanded;
  986. break;
  987. case CSS::ValueID::UltraExpanded:
  988. width = Gfx::FontWidth::UltraExpanded;
  989. break;
  990. default:
  991. break;
  992. }
  993. } else if (font_stretch->is_percentage()) {
  994. float percentage = font_stretch->as_percentage().percentage().value();
  995. if (percentage <= 50) {
  996. width = Gfx::FontWidth::UltraCondensed;
  997. } else if (percentage <= 62.5f) {
  998. width = Gfx::FontWidth::ExtraCondensed;
  999. } else if (percentage <= 75.0f) {
  1000. width = Gfx::FontWidth::Condensed;
  1001. } else if (percentage <= 87.5f) {
  1002. width = Gfx::FontWidth::SemiCondensed;
  1003. } else if (percentage <= 100.0f) {
  1004. width = Gfx::FontWidth::Normal;
  1005. } else if (percentage <= 112.5f) {
  1006. width = Gfx::FontWidth::SemiExpanded;
  1007. } else if (percentage <= 125.0f) {
  1008. width = Gfx::FontWidth::Expanded;
  1009. } else if (percentage <= 150.0f) {
  1010. width = Gfx::FontWidth::ExtraExpanded;
  1011. } else {
  1012. width = Gfx::FontWidth::UltraExpanded;
  1013. }
  1014. }
  1015. int weight = Gfx::FontWeight::Regular;
  1016. if (font_weight->is_identifier()) {
  1017. switch (static_cast<IdentifierStyleValue const&>(*font_weight).id()) {
  1018. case CSS::ValueID::Normal:
  1019. weight = Gfx::FontWeight::Regular;
  1020. break;
  1021. case CSS::ValueID::Bold:
  1022. weight = Gfx::FontWeight::Bold;
  1023. break;
  1024. case CSS::ValueID::Lighter:
  1025. // FIXME: This should be relative to the parent.
  1026. weight = Gfx::FontWeight::Regular;
  1027. break;
  1028. case CSS::ValueID::Bolder:
  1029. // FIXME: This should be relative to the parent.
  1030. weight = Gfx::FontWeight::Bold;
  1031. break;
  1032. default:
  1033. break;
  1034. }
  1035. } else if (font_weight->has_integer()) {
  1036. int font_weight_integer = font_weight->to_integer();
  1037. if (font_weight_integer <= Gfx::FontWeight::Regular)
  1038. weight = Gfx::FontWeight::Regular;
  1039. else if (font_weight_integer <= Gfx::FontWeight::Bold)
  1040. weight = Gfx::FontWeight::Bold;
  1041. else
  1042. weight = Gfx::FontWeight::Black;
  1043. } else if (font_weight->is_calculated()) {
  1044. auto maybe_weight = const_cast<CalculatedStyleValue&>(font_weight->as_calculated()).resolve_integer();
  1045. if (maybe_weight.has_value())
  1046. weight = maybe_weight.value();
  1047. }
  1048. bool bold = weight > Gfx::FontWeight::Regular;
  1049. // FIXME: Should be based on "user's default font size"
  1050. float font_size_in_px = 16;
  1051. if (font_size->is_identifier()) {
  1052. // https://w3c.github.io/csswg-drafts/css-fonts/#absolute-size-mapping
  1053. AK::HashMap<Web::CSS::ValueID, float> absolute_size_mapping = {
  1054. { CSS::ValueID::XxSmall, 0.6 },
  1055. { CSS::ValueID::XSmall, 0.75 },
  1056. { CSS::ValueID::Small, 8.0 / 9.0 },
  1057. { CSS::ValueID::Medium, 1.0 },
  1058. { CSS::ValueID::Large, 1.2 },
  1059. { CSS::ValueID::XLarge, 1.5 },
  1060. { CSS::ValueID::XxLarge, 2.0 },
  1061. { CSS::ValueID::XxxLarge, 3.0 },
  1062. { CSS::ValueID::Smaller, 0.8 },
  1063. { CSS::ValueID::Larger, 1.25 },
  1064. };
  1065. auto const identifier = static_cast<IdentifierStyleValue const&>(*font_size).id();
  1066. // https://w3c.github.io/csswg-drafts/css-fonts/#valdef-font-size-relative-size
  1067. // TODO: If the parent element has a keyword font size in the absolute size keyword mapping table,
  1068. // larger may compute the font size to the next entry in the table,
  1069. // and smaller may compute the font size to the previous entry in the table.
  1070. if (identifier == CSS::ValueID::Smaller || identifier == CSS::ValueID::Larger) {
  1071. if (parent_element && parent_element->computed_css_values()) {
  1072. font_size_in_px = parent_element->computed_css_values()->computed_font().pixel_metrics().size;
  1073. }
  1074. }
  1075. auto const multiplier = absolute_size_mapping.get(identifier).value_or(1.0);
  1076. font_size_in_px *= multiplier;
  1077. } else {
  1078. auto root_font_metrics = root_element_font_metrics();
  1079. Gfx::FontPixelMetrics font_pixel_metrics;
  1080. if (parent_element && parent_element->computed_css_values())
  1081. font_pixel_metrics = parent_element->computed_css_values()->computed_font().pixel_metrics();
  1082. else
  1083. font_pixel_metrics = Platform::FontPlugin::the().default_font().pixel_metrics();
  1084. auto parent_font_size = [&]() -> CSSPixels {
  1085. if (!parent_element || !parent_element->computed_css_values())
  1086. return font_size_in_px;
  1087. auto value = parent_element->computed_css_values()->property(CSS::PropertyID::FontSize);
  1088. if (value->is_length()) {
  1089. auto length = static_cast<LengthStyleValue const&>(*value).to_length();
  1090. auto parent_line_height = parent_or_root_element_line_height(parent_element, {});
  1091. if (length.is_absolute() || length.is_relative()) {
  1092. Length::FontMetrics font_metrics { font_size_in_px, font_pixel_metrics, parent_line_height };
  1093. return length.to_px(viewport_rect(), font_metrics, root_font_metrics);
  1094. }
  1095. }
  1096. return font_size_in_px;
  1097. };
  1098. Optional<Length> maybe_length;
  1099. if (font_size->is_percentage()) {
  1100. // Percentages refer to parent element's font size
  1101. maybe_length = Length::make_px(font_size->as_percentage().percentage().as_fraction() * parent_font_size());
  1102. } else if (font_size->is_length()) {
  1103. maybe_length = font_size->to_length();
  1104. } else if (font_size->is_calculated()) {
  1105. // FIXME: Support font-size: calc(...)
  1106. // Theoretically we can do this now, but to resolve it we need a layout_node which we might not have. :^(
  1107. }
  1108. if (maybe_length.has_value()) {
  1109. auto parent_line_height = parent_or_root_element_line_height(element, pseudo_element);
  1110. Length::FontMetrics font_metrics { parent_font_size(), font_pixel_metrics, parent_line_height };
  1111. auto px = maybe_length.value().to_px(viewport_rect(), font_metrics, root_font_metrics).value();
  1112. if (px != 0)
  1113. font_size_in_px = px;
  1114. }
  1115. }
  1116. int slope = Gfx::name_to_slope("Normal"sv);
  1117. // FIXME: Implement oblique <angle>
  1118. if (font_style->is_identifier()) {
  1119. switch (static_cast<IdentifierStyleValue const&>(*font_style).id()) {
  1120. case CSS::ValueID::Italic:
  1121. slope = Gfx::name_to_slope("Italic"sv);
  1122. break;
  1123. case CSS::ValueID::Oblique:
  1124. slope = Gfx::name_to_slope("Oblique"sv);
  1125. break;
  1126. case CSS::ValueID::Normal:
  1127. default:
  1128. break;
  1129. }
  1130. }
  1131. // FIXME: Implement the full font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  1132. // Note: This is modified by the find_font() lambda
  1133. FontSelector font_selector;
  1134. bool monospace = false;
  1135. auto find_font = [&](String const& family) -> RefPtr<Gfx::Font const> {
  1136. float font_size_in_pt = font_size_in_px * 0.75f;
  1137. font_selector = { family, font_size_in_pt, weight, width, slope };
  1138. if (auto it = m_loaded_fonts.find(family); it != m_loaded_fonts.end()) {
  1139. auto& loader = *it->value;
  1140. if (auto found_font = loader.font_with_point_size(font_size_in_pt))
  1141. return found_font;
  1142. }
  1143. if (auto found_font = FontCache::the().get(font_selector))
  1144. return found_font;
  1145. if (auto found_font = Gfx::FontDatabase::the().get(family.to_deprecated_string(), font_size_in_pt, weight, width, slope, Gfx::Font::AllowInexactSizeMatch::Yes))
  1146. return found_font;
  1147. return {};
  1148. };
  1149. auto find_generic_font = [&](ValueID font_id) -> RefPtr<Gfx::Font const> {
  1150. Platform::GenericFont generic_font {};
  1151. switch (font_id) {
  1152. case ValueID::Monospace:
  1153. case ValueID::UiMonospace:
  1154. generic_font = Platform::GenericFont::Monospace;
  1155. monospace = true;
  1156. break;
  1157. case ValueID::Serif:
  1158. generic_font = Platform::GenericFont::Serif;
  1159. break;
  1160. case ValueID::Fantasy:
  1161. generic_font = Platform::GenericFont::Fantasy;
  1162. break;
  1163. case ValueID::SansSerif:
  1164. generic_font = Platform::GenericFont::SansSerif;
  1165. break;
  1166. case ValueID::Cursive:
  1167. generic_font = Platform::GenericFont::Cursive;
  1168. break;
  1169. case ValueID::UiSerif:
  1170. generic_font = Platform::GenericFont::UiSerif;
  1171. break;
  1172. case ValueID::UiSansSerif:
  1173. generic_font = Platform::GenericFont::UiSansSerif;
  1174. break;
  1175. case ValueID::UiRounded:
  1176. generic_font = Platform::GenericFont::UiRounded;
  1177. break;
  1178. default:
  1179. return {};
  1180. }
  1181. return find_font(String::from_utf8(Platform::FontPlugin::the().generic_font_name(generic_font)).release_value_but_fixme_should_propagate_errors());
  1182. };
  1183. RefPtr<Gfx::Font const> found_font;
  1184. auto family_value = style.property(PropertyID::FontFamily);
  1185. if (family_value->is_value_list()) {
  1186. auto const& family_list = static_cast<StyleValueList const&>(*family_value).values();
  1187. for (auto const& family : family_list) {
  1188. if (family->is_identifier()) {
  1189. found_font = find_generic_font(family->to_identifier());
  1190. } else if (family->is_string()) {
  1191. found_font = find_font(family->to_string().release_value_but_fixme_should_propagate_errors());
  1192. }
  1193. if (found_font)
  1194. break;
  1195. }
  1196. } else if (family_value->is_identifier()) {
  1197. found_font = find_generic_font(family_value->to_identifier());
  1198. } else if (family_value->is_string()) {
  1199. found_font = find_font(family_value->to_string().release_value_but_fixme_should_propagate_errors());
  1200. }
  1201. if (!found_font) {
  1202. found_font = StyleProperties::font_fallback(monospace, bold);
  1203. }
  1204. FontCache::the().set(font_selector, *found_font);
  1205. style.set_property(CSS::PropertyID::FontSize, LengthStyleValue::create(CSS::Length::make_px(font_size_in_px)));
  1206. style.set_property(CSS::PropertyID::FontWeight, NumericStyleValue::create_integer(weight));
  1207. style.set_computed_font(found_font.release_nonnull());
  1208. }
  1209. Gfx::Font const& StyleComputer::initial_font() const
  1210. {
  1211. // FIXME: This is not correct.
  1212. return StyleProperties::font_fallback(false, false);
  1213. }
  1214. CSSPixels StyleComputer::parent_or_root_element_line_height(DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1215. {
  1216. auto root_font_metrics = root_element_font_metrics();
  1217. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1218. if (!parent_element)
  1219. return root_font_metrics.line_height;
  1220. auto* computed_values = parent_element->computed_css_values();
  1221. auto parent_font_pixel_metrics = parent_element->layout_node()
  1222. ? parent_element->layout_node()->font().pixel_metrics()
  1223. : Gfx::FontDatabase::default_font().pixel_metrics();
  1224. auto parent_font_size = computed_values->property(CSS::PropertyID::FontSize)->to_length();
  1225. // FIXME: Can the parent font size be non-absolute here?
  1226. auto parent_font_size_value = parent_font_size.is_absolute() ? parent_font_size.absolute_length_to_px() : root_font_metrics.font_size;
  1227. auto parent_parent_line_height = parent_or_root_element_line_height(parent_element, {});
  1228. Length::FontMetrics parent_font_metrics { parent_font_size_value, parent_font_pixel_metrics, parent_parent_line_height };
  1229. return computed_values->line_height(viewport_rect(), parent_font_metrics, root_font_metrics);
  1230. }
  1231. void StyleComputer::absolutize_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1232. {
  1233. auto parent_or_root_line_height = parent_or_root_element_line_height(element, pseudo_element);
  1234. auto font_pixel_metrics = style.computed_font().pixel_metrics();
  1235. auto root_font_metrics = root_element_font_metrics();
  1236. Length::FontMetrics font_metrics { root_font_metrics.font_size, font_pixel_metrics, parent_or_root_line_height };
  1237. auto font_size = style.property(CSS::PropertyID::FontSize)->to_length().to_px(viewport_rect(), font_metrics, root_font_metrics);
  1238. font_metrics.font_size = font_size;
  1239. // NOTE: Percentage line-height values are relative to the font-size of the element.
  1240. // We have to resolve them right away, so that the *computed* line-height is ready for inheritance.
  1241. // We can't simply absolutize *all* percentage values against the font size,
  1242. // because most percentages are relative to containing block metrics.
  1243. auto& line_height_value_slot = style.m_property_values[to_underlying(CSS::PropertyID::LineHeight)];
  1244. if (line_height_value_slot && line_height_value_slot->is_percentage()) {
  1245. line_height_value_slot = LengthStyleValue::create(
  1246. Length::make_px(font_size * line_height_value_slot->as_percentage().percentage().as_fraction()));
  1247. }
  1248. auto line_height = style.line_height(viewport_rect(), font_metrics, root_font_metrics);
  1249. font_metrics.line_height = line_height;
  1250. // NOTE: line-height might be using lh which should be resolved against the parent line height (like we did here already)
  1251. if (line_height_value_slot && line_height_value_slot->is_length())
  1252. line_height_value_slot = LengthStyleValue::create(Length::make_px(line_height));
  1253. for (size_t i = 0; i < style.m_property_values.size(); ++i) {
  1254. auto& value_slot = style.m_property_values[i];
  1255. if (!value_slot)
  1256. continue;
  1257. value_slot = value_slot->absolutized(viewport_rect(), font_metrics, root_font_metrics);
  1258. }
  1259. }
  1260. enum class BoxTypeTransformation {
  1261. None,
  1262. Blockify,
  1263. Inlinify,
  1264. };
  1265. static BoxTypeTransformation required_box_type_transformation(StyleProperties const& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement> const& pseudo_element)
  1266. {
  1267. // Absolute positioning or floating an element blockifies the box’s display type. [CSS2]
  1268. if (style.position() == CSS::Position::Absolute || style.position() == CSS::Position::Fixed || style.float_() != CSS::Float::None)
  1269. return BoxTypeTransformation::Blockify;
  1270. // FIXME: Containment in a ruby container inlinifies the box’s display type, as described in [CSS-RUBY-1].
  1271. // NOTE: If we're computing style for a pseudo-element, the effective parent will be the originating element itself, not its parent.
  1272. auto const* parent = pseudo_element.has_value() ? &element : element.parent_element();
  1273. // A parent with a grid or flex display value blockifies the box’s display type. [CSS-GRID-1] [CSS-FLEXBOX-1]
  1274. if (parent && parent->computed_css_values()) {
  1275. auto const& parent_display = parent->computed_css_values()->display();
  1276. if (parent_display.is_grid_inside() || parent_display.is_flex_inside())
  1277. return BoxTypeTransformation::Blockify;
  1278. }
  1279. return BoxTypeTransformation::None;
  1280. }
  1281. // https://drafts.csswg.org/css-display/#transformations
  1282. void StyleComputer::transform_box_type_if_needed(StyleProperties& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1283. {
  1284. // 2.7. Automatic Box Type Transformations
  1285. // Some layout effects require blockification or inlinification of the box type,
  1286. // which sets the box’s computed outer display type to block or inline (respectively).
  1287. // (This has no effect on display types that generate no box at all, such as none or contents.)
  1288. // FIXME: If a block box (block flow) is inlinified, its inner display type is set to flow-root so that it remains a block container.
  1289. //
  1290. // FIXME: If an inline box (inline flow) is inlinified, it recursively inlinifies all of its in-flow children,
  1291. // so that no block-level descendants break up the inline formatting context in which it participates.
  1292. //
  1293. // FIXME: For legacy reasons, if an inline block box (inline flow-root) is blockified, it becomes a block box (losing its flow-root nature).
  1294. // For consistency, a run-in flow-root box also blockifies to a block box.
  1295. //
  1296. // FIXME: If a layout-internal box is blockified, its inner display type converts to flow so that it becomes a block container.
  1297. // Inlinification has no effect on layout-internal boxes. (However, placement in such an inline context will typically cause them
  1298. // to be wrapped in an appropriately-typed anonymous inline-level box.)
  1299. auto display = style.display();
  1300. if (display.is_none() || display.is_contents())
  1301. return;
  1302. switch (required_box_type_transformation(style, element, pseudo_element)) {
  1303. case BoxTypeTransformation::None:
  1304. break;
  1305. case BoxTypeTransformation::Blockify:
  1306. if (!display.is_block_outside()) {
  1307. style.set_property(CSS::PropertyID::Display, DisplayStyleValue::create({ CSS::Display::Outside::Block, display.inside(), display.list_item() }));
  1308. }
  1309. break;
  1310. case BoxTypeTransformation::Inlinify:
  1311. if (!display.is_inline_outside())
  1312. style.set_property(CSS::PropertyID::Display, DisplayStyleValue::create({ CSS::Display::Outside::Inline, display.inside(), display.list_item() }));
  1313. break;
  1314. }
  1315. }
  1316. NonnullRefPtr<StyleProperties> StyleComputer::create_document_style() const
  1317. {
  1318. auto style = StyleProperties::create();
  1319. compute_font(style, nullptr, {});
  1320. compute_defaulted_values(style, nullptr, {});
  1321. absolutize_values(style, nullptr, {});
  1322. style->set_property(CSS::PropertyID::Width, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().width())));
  1323. style->set_property(CSS::PropertyID::Height, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().height())));
  1324. style->set_property(CSS::PropertyID::Display, CSS::DisplayStyleValue::create(CSS::Display::from_short(CSS::Display::Short::Block)));
  1325. return style;
  1326. }
  1327. ErrorOr<NonnullRefPtr<StyleProperties>> StyleComputer::compute_style(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1328. {
  1329. auto style = TRY(compute_style_impl(element, move(pseudo_element), ComputeStyleMode::Normal));
  1330. return style.release_nonnull();
  1331. }
  1332. ErrorOr<RefPtr<StyleProperties>> StyleComputer::compute_pseudo_element_style_if_needed(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1333. {
  1334. return compute_style_impl(element, move(pseudo_element), ComputeStyleMode::CreatePseudoElementStyleIfNeeded);
  1335. }
  1336. ErrorOr<RefPtr<StyleProperties>> StyleComputer::compute_style_impl(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, ComputeStyleMode mode) const
  1337. {
  1338. build_rule_cache_if_needed();
  1339. auto style = StyleProperties::create();
  1340. // 1. Perform the cascade. This produces the "specified style"
  1341. bool did_match_any_pseudo_element_rules = false;
  1342. TRY(compute_cascaded_values(style, element, pseudo_element, did_match_any_pseudo_element_rules, mode));
  1343. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded && !did_match_any_pseudo_element_rules)
  1344. return nullptr;
  1345. // 2. Compute the font, since that may be needed for font-relative CSS units
  1346. compute_font(style, &element, pseudo_element);
  1347. // 3. Absolutize values, turning font/viewport relative lengths into absolute lengths
  1348. absolutize_values(style, &element, pseudo_element);
  1349. // 4. Default the values, applying inheritance and 'initial' as needed
  1350. compute_defaulted_values(style, &element, pseudo_element);
  1351. // 5. Run automatic box type transformations
  1352. transform_box_type_if_needed(style, element, pseudo_element);
  1353. return style;
  1354. }
  1355. PropertyDependencyNode::PropertyDependencyNode(String name)
  1356. : m_name(move(name))
  1357. {
  1358. }
  1359. void PropertyDependencyNode::add_child(NonnullRefPtr<PropertyDependencyNode> new_child)
  1360. {
  1361. for (auto const& child : m_children) {
  1362. if (child->m_name == new_child->m_name)
  1363. return;
  1364. }
  1365. // We detect self-reference already.
  1366. VERIFY(new_child->m_name != m_name);
  1367. m_children.append(move(new_child));
  1368. }
  1369. bool PropertyDependencyNode::has_cycles()
  1370. {
  1371. if (m_marked)
  1372. return true;
  1373. TemporaryChange change { m_marked, true };
  1374. for (auto& child : m_children) {
  1375. if (child->has_cycles())
  1376. return true;
  1377. }
  1378. return false;
  1379. }
  1380. void StyleComputer::build_rule_cache_if_needed() const
  1381. {
  1382. if (m_author_rule_cache && m_user_agent_rule_cache)
  1383. return;
  1384. const_cast<StyleComputer&>(*this).build_rule_cache();
  1385. }
  1386. NonnullOwnPtr<StyleComputer::RuleCache> StyleComputer::make_rule_cache_for_cascade_origin(CascadeOrigin cascade_origin)
  1387. {
  1388. auto rule_cache = make<RuleCache>();
  1389. size_t num_class_rules = 0;
  1390. size_t num_id_rules = 0;
  1391. size_t num_tag_name_rules = 0;
  1392. size_t num_pseudo_element_rules = 0;
  1393. Vector<MatchingRule> matching_rules;
  1394. size_t style_sheet_index = 0;
  1395. for_each_stylesheet(cascade_origin, [&](auto& sheet) {
  1396. size_t rule_index = 0;
  1397. sheet.for_each_effective_style_rule([&](auto const& rule) {
  1398. size_t selector_index = 0;
  1399. for (CSS::Selector const& selector : rule.selectors()) {
  1400. MatchingRule matching_rule {
  1401. &rule,
  1402. style_sheet_index,
  1403. rule_index,
  1404. selector_index,
  1405. selector.specificity(),
  1406. };
  1407. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  1408. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::PseudoElement) {
  1409. matching_rule.contains_pseudo_element = true;
  1410. ++num_pseudo_element_rules;
  1411. break;
  1412. }
  1413. }
  1414. bool added_to_bucket = false;
  1415. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  1416. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Id) {
  1417. rule_cache->rules_by_id.ensure(simple_selector.name()).append(move(matching_rule));
  1418. ++num_id_rules;
  1419. added_to_bucket = true;
  1420. break;
  1421. }
  1422. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Class) {
  1423. rule_cache->rules_by_class.ensure(simple_selector.name()).append(move(matching_rule));
  1424. ++num_class_rules;
  1425. added_to_bucket = true;
  1426. break;
  1427. }
  1428. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::TagName) {
  1429. rule_cache->rules_by_tag_name.ensure(simple_selector.name()).append(move(matching_rule));
  1430. ++num_tag_name_rules;
  1431. added_to_bucket = true;
  1432. break;
  1433. }
  1434. }
  1435. if (!added_to_bucket)
  1436. rule_cache->other_rules.append(move(matching_rule));
  1437. ++selector_index;
  1438. }
  1439. ++rule_index;
  1440. });
  1441. ++style_sheet_index;
  1442. });
  1443. if constexpr (LIBWEB_CSS_DEBUG) {
  1444. dbgln("Built rule cache!");
  1445. dbgln(" ID: {}", num_id_rules);
  1446. dbgln(" Class: {}", num_class_rules);
  1447. dbgln(" TagName: {}", num_tag_name_rules);
  1448. dbgln("PseudoElement: {}", num_pseudo_element_rules);
  1449. dbgln(" Other: {}", rule_cache->other_rules.size());
  1450. dbgln(" Total: {}", num_class_rules + num_id_rules + num_tag_name_rules + rule_cache->other_rules.size());
  1451. }
  1452. return rule_cache;
  1453. }
  1454. void StyleComputer::build_rule_cache()
  1455. {
  1456. m_author_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::Author);
  1457. m_user_agent_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::UserAgent);
  1458. }
  1459. void StyleComputer::invalidate_rule_cache()
  1460. {
  1461. m_author_rule_cache = nullptr;
  1462. // NOTE: It might not be necessary to throw away the UA rule cache.
  1463. // If we are sure that it's safe, we could keep it as an optimization.
  1464. m_user_agent_rule_cache = nullptr;
  1465. }
  1466. CSSPixelRect StyleComputer::viewport_rect() const
  1467. {
  1468. if (auto const* browsing_context = document().browsing_context())
  1469. return browsing_context->viewport_rect();
  1470. return {};
  1471. }
  1472. void StyleComputer::did_load_font([[maybe_unused]] FlyString const& family_name)
  1473. {
  1474. document().invalidate_style();
  1475. }
  1476. void StyleComputer::load_fonts_from_sheet(CSSStyleSheet const& sheet)
  1477. {
  1478. for (auto const& rule : static_cast<CSSStyleSheet const&>(sheet).rules()) {
  1479. if (!is<CSSFontFaceRule>(*rule))
  1480. continue;
  1481. auto const& font_face = static_cast<CSSFontFaceRule const&>(*rule).font_face();
  1482. if (font_face.sources().is_empty())
  1483. continue;
  1484. if (m_loaded_fonts.contains(font_face.font_family()))
  1485. continue;
  1486. Vector<AK::URL> urls;
  1487. for (auto& source : font_face.sources()) {
  1488. // FIXME: These should be loaded relative to the stylesheet URL instead of the document URL.
  1489. urls.append(m_document->parse_url(source.url.to_deprecated_string()));
  1490. }
  1491. if (urls.is_empty())
  1492. continue;
  1493. auto loader = make<FontLoader>(const_cast<StyleComputer&>(*this), font_face.font_family(), move(urls));
  1494. const_cast<StyleComputer&>(*this).m_loaded_fonts.set(font_face.font_family().to_string(), move(loader));
  1495. }
  1496. }
  1497. }