StyleComputer.cpp 58 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330
  1. /*
  2. * Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021, the SerenityOS developers.
  4. * Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause
  7. */
  8. #include <AK/Debug.h>
  9. #include <AK/QuickSort.h>
  10. #include <AK/TemporaryChange.h>
  11. #include <LibGfx/Font/Font.h>
  12. #include <LibGfx/Font/FontDatabase.h>
  13. #include <LibGfx/Font/FontStyleMapping.h>
  14. #include <LibGfx/Font/ScaledFont.h>
  15. #include <LibGfx/Font/TrueType/Font.h>
  16. #include <LibGfx/Font/VectorFont.h>
  17. #include <LibGfx/Font/WOFF/Font.h>
  18. #include <LibWeb/CSS/CSSFontFaceRule.h>
  19. #include <LibWeb/CSS/CSSStyleRule.h>
  20. #include <LibWeb/CSS/Parser/Parser.h>
  21. #include <LibWeb/CSS/SelectorEngine.h>
  22. #include <LibWeb/CSS/StyleComputer.h>
  23. #include <LibWeb/CSS/StyleSheet.h>
  24. #include <LibWeb/DOM/Document.h>
  25. #include <LibWeb/DOM/Element.h>
  26. #include <LibWeb/FontCache.h>
  27. #include <LibWeb/HTML/HTMLHtmlElement.h>
  28. #include <LibWeb/Loader/ResourceLoader.h>
  29. #include <stdio.h>
  30. namespace Web::CSS {
  31. StyleComputer::StyleComputer(DOM::Document& document)
  32. : m_document(document)
  33. {
  34. }
  35. StyleComputer::~StyleComputer() = default;
  36. class StyleComputer::FontLoader : public ResourceClient {
  37. public:
  38. explicit FontLoader(StyleComputer& style_computer, FlyString family_name, AK::URL url)
  39. : m_style_computer(style_computer)
  40. , m_family_name(move(family_name))
  41. {
  42. LoadRequest request;
  43. request.set_url(move(url));
  44. set_resource(ResourceLoader::the().load_resource(Resource::Type::Generic, request));
  45. }
  46. virtual ~FontLoader() override { }
  47. virtual void resource_did_load() override
  48. {
  49. auto result = try_load_font();
  50. if (result.is_error())
  51. return;
  52. m_vector_font = result.release_value();
  53. m_style_computer.did_load_font(m_family_name);
  54. }
  55. virtual void resource_did_fail() override
  56. {
  57. }
  58. RefPtr<Gfx::Font> font_with_point_size(float point_size) const
  59. {
  60. if (!m_vector_font)
  61. return nullptr;
  62. if (auto it = m_cached_fonts.find(point_size); it != m_cached_fonts.end())
  63. return it->value;
  64. // FIXME: It might be nicer to have a global cap on the number of fonts we cache
  65. // instead of doing it at the per-font level like this.
  66. constexpr size_t max_cached_font_size_count = 64;
  67. if (m_cached_fonts.size() > max_cached_font_size_count)
  68. m_cached_fonts.remove(m_cached_fonts.begin());
  69. auto font = adopt_ref(*new Gfx::ScaledFont(*m_vector_font, point_size, point_size));
  70. m_cached_fonts.set(point_size, font);
  71. return font;
  72. }
  73. private:
  74. ErrorOr<NonnullRefPtr<Gfx::VectorFont>> try_load_font()
  75. {
  76. // 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
  77. auto mime_type = resource()->mime_type();
  78. if (mime_type == "font/ttf"sv || mime_type == "application/x-font-ttf"sv)
  79. return TRY(TTF::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  80. if (mime_type == "font/woff"sv)
  81. return TRY(WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  82. auto ttf = TTF::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  83. if (!ttf.is_error())
  84. return ttf.release_value();
  85. auto woff = WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  86. if (!woff.is_error())
  87. return woff.release_value();
  88. return ttf.release_error();
  89. }
  90. StyleComputer& m_style_computer;
  91. FlyString m_family_name;
  92. RefPtr<Gfx::VectorFont> m_vector_font;
  93. HashMap<float, NonnullRefPtr<Gfx::ScaledFont>> mutable m_cached_fonts;
  94. };
  95. static StyleSheet& default_stylesheet()
  96. {
  97. static StyleSheet* sheet;
  98. if (!sheet) {
  99. extern char const default_stylesheet_source[];
  100. String css = default_stylesheet_source;
  101. sheet = parse_css_stylesheet(CSS::Parser::ParsingContext(), css).leak_ref();
  102. }
  103. return *sheet;
  104. }
  105. static StyleSheet& quirks_mode_stylesheet()
  106. {
  107. static StyleSheet* sheet;
  108. if (!sheet) {
  109. extern char const quirks_mode_stylesheet_source[];
  110. String css = quirks_mode_stylesheet_source;
  111. sheet = parse_css_stylesheet(CSS::Parser::ParsingContext(), css).leak_ref();
  112. }
  113. return *sheet;
  114. }
  115. template<typename Callback>
  116. void StyleComputer::for_each_stylesheet(CascadeOrigin cascade_origin, Callback callback) const
  117. {
  118. if (cascade_origin == CascadeOrigin::UserAgent) {
  119. callback(default_stylesheet());
  120. if (document().in_quirks_mode())
  121. callback(quirks_mode_stylesheet());
  122. }
  123. if (cascade_origin == CascadeOrigin::Author) {
  124. for (auto const& sheet : document().style_sheets().sheets()) {
  125. callback(sheet);
  126. }
  127. }
  128. }
  129. Vector<MatchingRule> StyleComputer::collect_matching_rules(DOM::Element const& element, CascadeOrigin cascade_origin, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  130. {
  131. if (cascade_origin == CascadeOrigin::Author) {
  132. Vector<MatchingRule> rules_to_run;
  133. if (pseudo_element.has_value()) {
  134. if (auto it = m_rule_cache->rules_by_pseudo_element.find(pseudo_element.value()); it != m_rule_cache->rules_by_pseudo_element.end())
  135. rules_to_run.extend(it->value);
  136. } else {
  137. for (auto const& class_name : element.class_names()) {
  138. if (auto it = m_rule_cache->rules_by_class.find(class_name); it != m_rule_cache->rules_by_class.end())
  139. rules_to_run.extend(it->value);
  140. }
  141. if (auto id = element.get_attribute(HTML::AttributeNames::id); !id.is_null()) {
  142. if (auto it = m_rule_cache->rules_by_id.find(id); it != m_rule_cache->rules_by_id.end())
  143. rules_to_run.extend(it->value);
  144. }
  145. if (auto it = m_rule_cache->rules_by_tag_name.find(element.local_name()); it != m_rule_cache->rules_by_tag_name.end())
  146. rules_to_run.extend(it->value);
  147. rules_to_run.extend(m_rule_cache->other_rules);
  148. }
  149. Vector<MatchingRule> matching_rules;
  150. matching_rules.ensure_capacity(rules_to_run.size());
  151. for (auto const& rule_to_run : rules_to_run) {
  152. auto const& selector = rule_to_run.rule->selectors()[rule_to_run.selector_index];
  153. if (SelectorEngine::matches(selector, element, pseudo_element))
  154. matching_rules.append(rule_to_run);
  155. }
  156. return matching_rules;
  157. }
  158. Vector<MatchingRule> matching_rules;
  159. size_t style_sheet_index = 0;
  160. for_each_stylesheet(cascade_origin, [&](auto& sheet) {
  161. size_t rule_index = 0;
  162. static_cast<CSSStyleSheet const&>(sheet).for_each_effective_style_rule([&](auto const& rule) {
  163. size_t selector_index = 0;
  164. for (auto& selector : rule.selectors()) {
  165. if (SelectorEngine::matches(selector, element, pseudo_element)) {
  166. matching_rules.append({ rule, style_sheet_index, rule_index, selector_index, selector.specificity() });
  167. break;
  168. }
  169. ++selector_index;
  170. }
  171. ++rule_index;
  172. });
  173. ++style_sheet_index;
  174. });
  175. return matching_rules;
  176. }
  177. static void sort_matching_rules(Vector<MatchingRule>& matching_rules)
  178. {
  179. quick_sort(matching_rules, [&](MatchingRule& a, MatchingRule& b) {
  180. auto const& a_selector = a.rule->selectors()[a.selector_index];
  181. auto const& b_selector = b.rule->selectors()[b.selector_index];
  182. auto a_specificity = a_selector.specificity();
  183. auto b_specificity = b_selector.specificity();
  184. if (a_selector.specificity() == b_selector.specificity()) {
  185. if (a.style_sheet_index == b.style_sheet_index)
  186. return a.rule_index < b.rule_index;
  187. return a.style_sheet_index < b.style_sheet_index;
  188. }
  189. return a_specificity < b_specificity;
  190. });
  191. }
  192. enum class Edge {
  193. Top,
  194. Right,
  195. Bottom,
  196. Left,
  197. All,
  198. };
  199. static bool contains(Edge a, Edge b)
  200. {
  201. return a == b || b == Edge::All;
  202. }
  203. static void set_property_expanding_shorthands(StyleProperties& style, CSS::PropertyID property_id, StyleValue const& value, DOM::Document& document)
  204. {
  205. auto assign_edge_values = [&style](PropertyID top_property, PropertyID right_property, PropertyID bottom_property, PropertyID left_property, auto const& values) {
  206. if (values.size() == 4) {
  207. style.set_property(top_property, values[0]);
  208. style.set_property(right_property, values[1]);
  209. style.set_property(bottom_property, values[2]);
  210. style.set_property(left_property, values[3]);
  211. } else if (values.size() == 3) {
  212. style.set_property(top_property, values[0]);
  213. style.set_property(right_property, values[1]);
  214. style.set_property(bottom_property, values[2]);
  215. style.set_property(left_property, values[1]);
  216. } else if (values.size() == 2) {
  217. style.set_property(top_property, values[0]);
  218. style.set_property(right_property, values[1]);
  219. style.set_property(bottom_property, values[0]);
  220. style.set_property(left_property, values[1]);
  221. } else if (values.size() == 1) {
  222. style.set_property(top_property, values[0]);
  223. style.set_property(right_property, values[0]);
  224. style.set_property(bottom_property, values[0]);
  225. style.set_property(left_property, values[0]);
  226. }
  227. };
  228. if (property_id == CSS::PropertyID::TextDecoration) {
  229. if (value.is_text_decoration()) {
  230. auto const& text_decoration = value.as_text_decoration();
  231. style.set_property(CSS::PropertyID::TextDecorationLine, text_decoration.line());
  232. style.set_property(CSS::PropertyID::TextDecorationThickness, text_decoration.thickness());
  233. style.set_property(CSS::PropertyID::TextDecorationStyle, text_decoration.style());
  234. style.set_property(CSS::PropertyID::TextDecorationColor, text_decoration.color());
  235. return;
  236. }
  237. style.set_property(CSS::PropertyID::TextDecorationLine, value);
  238. style.set_property(CSS::PropertyID::TextDecorationThickness, value);
  239. style.set_property(CSS::PropertyID::TextDecorationStyle, value);
  240. style.set_property(CSS::PropertyID::TextDecorationColor, value);
  241. return;
  242. }
  243. if (property_id == CSS::PropertyID::Overflow) {
  244. if (value.is_overflow()) {
  245. auto const& overflow = value.as_overflow();
  246. style.set_property(CSS::PropertyID::OverflowX, overflow.overflow_x());
  247. style.set_property(CSS::PropertyID::OverflowY, overflow.overflow_y());
  248. return;
  249. }
  250. style.set_property(CSS::PropertyID::OverflowX, value);
  251. style.set_property(CSS::PropertyID::OverflowY, value);
  252. return;
  253. }
  254. if (property_id == CSS::PropertyID::Border) {
  255. set_property_expanding_shorthands(style, CSS::PropertyID::BorderTop, value, document);
  256. set_property_expanding_shorthands(style, CSS::PropertyID::BorderRight, value, document);
  257. set_property_expanding_shorthands(style, CSS::PropertyID::BorderBottom, value, document);
  258. set_property_expanding_shorthands(style, CSS::PropertyID::BorderLeft, value, document);
  259. // FIXME: Also reset border-image, in line with the spec: https://www.w3.org/TR/css-backgrounds-3/#border-shorthands
  260. return;
  261. }
  262. if (property_id == CSS::PropertyID::BorderRadius) {
  263. if (value.is_border_radius_shorthand()) {
  264. auto const& shorthand = value.as_border_radius_shorthand();
  265. style.set_property(CSS::PropertyID::BorderTopLeftRadius, shorthand.top_left());
  266. style.set_property(CSS::PropertyID::BorderTopRightRadius, shorthand.top_right());
  267. style.set_property(CSS::PropertyID::BorderBottomRightRadius, shorthand.bottom_right());
  268. style.set_property(CSS::PropertyID::BorderBottomLeftRadius, shorthand.bottom_left());
  269. return;
  270. }
  271. style.set_property(CSS::PropertyID::BorderTopLeftRadius, value);
  272. style.set_property(CSS::PropertyID::BorderTopRightRadius, value);
  273. style.set_property(CSS::PropertyID::BorderBottomRightRadius, value);
  274. style.set_property(CSS::PropertyID::BorderBottomLeftRadius, value);
  275. return;
  276. }
  277. if (property_id == CSS::PropertyID::BorderTop
  278. || property_id == CSS::PropertyID::BorderRight
  279. || property_id == CSS::PropertyID::BorderBottom
  280. || property_id == CSS::PropertyID::BorderLeft) {
  281. Edge edge = Edge::All;
  282. switch (property_id) {
  283. case CSS::PropertyID::BorderTop:
  284. edge = Edge::Top;
  285. break;
  286. case CSS::PropertyID::BorderRight:
  287. edge = Edge::Right;
  288. break;
  289. case CSS::PropertyID::BorderBottom:
  290. edge = Edge::Bottom;
  291. break;
  292. case CSS::PropertyID::BorderLeft:
  293. edge = Edge::Left;
  294. break;
  295. default:
  296. break;
  297. }
  298. if (value.is_border()) {
  299. auto const& border = value.as_border();
  300. if (contains(Edge::Top, edge)) {
  301. style.set_property(PropertyID::BorderTopWidth, border.border_width());
  302. style.set_property(PropertyID::BorderTopStyle, border.border_style());
  303. style.set_property(PropertyID::BorderTopColor, border.border_color());
  304. }
  305. if (contains(Edge::Right, edge)) {
  306. style.set_property(PropertyID::BorderRightWidth, border.border_width());
  307. style.set_property(PropertyID::BorderRightStyle, border.border_style());
  308. style.set_property(PropertyID::BorderRightColor, border.border_color());
  309. }
  310. if (contains(Edge::Bottom, edge)) {
  311. style.set_property(PropertyID::BorderBottomWidth, border.border_width());
  312. style.set_property(PropertyID::BorderBottomStyle, border.border_style());
  313. style.set_property(PropertyID::BorderBottomColor, border.border_color());
  314. }
  315. if (contains(Edge::Left, edge)) {
  316. style.set_property(PropertyID::BorderLeftWidth, border.border_width());
  317. style.set_property(PropertyID::BorderLeftStyle, border.border_style());
  318. style.set_property(PropertyID::BorderLeftColor, border.border_color());
  319. }
  320. return;
  321. }
  322. return;
  323. }
  324. if (property_id == CSS::PropertyID::BorderStyle) {
  325. if (value.is_value_list()) {
  326. auto const& values_list = value.as_value_list();
  327. assign_edge_values(PropertyID::BorderTopStyle, PropertyID::BorderRightStyle, PropertyID::BorderBottomStyle, PropertyID::BorderLeftStyle, values_list.values());
  328. return;
  329. }
  330. style.set_property(CSS::PropertyID::BorderTopStyle, value);
  331. style.set_property(CSS::PropertyID::BorderRightStyle, value);
  332. style.set_property(CSS::PropertyID::BorderBottomStyle, value);
  333. style.set_property(CSS::PropertyID::BorderLeftStyle, value);
  334. return;
  335. }
  336. if (property_id == CSS::PropertyID::BorderWidth) {
  337. if (value.is_value_list()) {
  338. auto const& values_list = value.as_value_list();
  339. assign_edge_values(PropertyID::BorderTopWidth, PropertyID::BorderRightWidth, PropertyID::BorderBottomWidth, PropertyID::BorderLeftWidth, values_list.values());
  340. return;
  341. }
  342. style.set_property(CSS::PropertyID::BorderTopWidth, value);
  343. style.set_property(CSS::PropertyID::BorderRightWidth, value);
  344. style.set_property(CSS::PropertyID::BorderBottomWidth, value);
  345. style.set_property(CSS::PropertyID::BorderLeftWidth, value);
  346. return;
  347. }
  348. if (property_id == CSS::PropertyID::BorderColor) {
  349. if (value.is_value_list()) {
  350. auto const& values_list = value.as_value_list();
  351. assign_edge_values(PropertyID::BorderTopColor, PropertyID::BorderRightColor, PropertyID::BorderBottomColor, PropertyID::BorderLeftColor, values_list.values());
  352. return;
  353. }
  354. style.set_property(CSS::PropertyID::BorderTopColor, value);
  355. style.set_property(CSS::PropertyID::BorderRightColor, value);
  356. style.set_property(CSS::PropertyID::BorderBottomColor, value);
  357. style.set_property(CSS::PropertyID::BorderLeftColor, value);
  358. return;
  359. }
  360. if (property_id == CSS::PropertyID::Background) {
  361. if (value.is_background()) {
  362. auto const& background = value.as_background();
  363. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundColor, background.color(), document);
  364. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundImage, background.image(), document);
  365. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundPosition, background.position(), document);
  366. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundSize, background.size(), document);
  367. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundRepeat, background.repeat(), document);
  368. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundAttachment, background.attachment(), document);
  369. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundOrigin, background.origin(), document);
  370. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundClip, background.clip(), document);
  371. return;
  372. }
  373. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundColor, value, document);
  374. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundImage, value, document);
  375. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundPosition, value, document);
  376. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundSize, value, document);
  377. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundRepeat, value, document);
  378. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundAttachment, value, document);
  379. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundOrigin, value, document);
  380. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundClip, value, document);
  381. return;
  382. }
  383. if (property_id == CSS::PropertyID::Margin) {
  384. if (value.is_value_list()) {
  385. auto const& values_list = value.as_value_list();
  386. assign_edge_values(PropertyID::MarginTop, PropertyID::MarginRight, PropertyID::MarginBottom, PropertyID::MarginLeft, values_list.values());
  387. return;
  388. }
  389. style.set_property(CSS::PropertyID::MarginTop, value);
  390. style.set_property(CSS::PropertyID::MarginRight, value);
  391. style.set_property(CSS::PropertyID::MarginBottom, value);
  392. style.set_property(CSS::PropertyID::MarginLeft, value);
  393. return;
  394. }
  395. if (property_id == CSS::PropertyID::Padding) {
  396. if (value.is_value_list()) {
  397. auto const& values_list = value.as_value_list();
  398. assign_edge_values(PropertyID::PaddingTop, PropertyID::PaddingRight, PropertyID::PaddingBottom, PropertyID::PaddingLeft, values_list.values());
  399. return;
  400. }
  401. style.set_property(CSS::PropertyID::PaddingTop, value);
  402. style.set_property(CSS::PropertyID::PaddingRight, value);
  403. style.set_property(CSS::PropertyID::PaddingBottom, value);
  404. style.set_property(CSS::PropertyID::PaddingLeft, value);
  405. return;
  406. }
  407. if (property_id == CSS::PropertyID::ListStyle) {
  408. if (value.is_list_style()) {
  409. auto const& list_style = value.as_list_style();
  410. style.set_property(CSS::PropertyID::ListStylePosition, list_style.position());
  411. style.set_property(CSS::PropertyID::ListStyleImage, list_style.image());
  412. style.set_property(CSS::PropertyID::ListStyleType, list_style.style_type());
  413. return;
  414. }
  415. style.set_property(CSS::PropertyID::ListStylePosition, value);
  416. style.set_property(CSS::PropertyID::ListStyleImage, value);
  417. style.set_property(CSS::PropertyID::ListStyleType, value);
  418. return;
  419. }
  420. if (property_id == CSS::PropertyID::Font) {
  421. if (value.is_font()) {
  422. auto const& font_shorthand = value.as_font();
  423. style.set_property(CSS::PropertyID::FontSize, font_shorthand.font_size());
  424. style.set_property(CSS::PropertyID::FontFamily, font_shorthand.font_families());
  425. style.set_property(CSS::PropertyID::FontStyle, font_shorthand.font_style());
  426. style.set_property(CSS::PropertyID::FontWeight, font_shorthand.font_weight());
  427. style.set_property(CSS::PropertyID::LineHeight, font_shorthand.line_height());
  428. // FIXME: Implement font-stretch and font-variant
  429. return;
  430. }
  431. style.set_property(CSS::PropertyID::FontSize, value);
  432. style.set_property(CSS::PropertyID::FontFamily, value);
  433. style.set_property(CSS::PropertyID::FontStyle, value);
  434. style.set_property(CSS::PropertyID::FontWeight, value);
  435. style.set_property(CSS::PropertyID::LineHeight, value);
  436. // FIXME: Implement font-stretch and font-variant
  437. return;
  438. }
  439. if (property_id == CSS::PropertyID::Flex) {
  440. if (value.is_flex()) {
  441. auto const& flex = value.as_flex();
  442. style.set_property(CSS::PropertyID::FlexGrow, flex.grow());
  443. style.set_property(CSS::PropertyID::FlexShrink, flex.shrink());
  444. style.set_property(CSS::PropertyID::FlexBasis, flex.basis());
  445. return;
  446. }
  447. style.set_property(CSS::PropertyID::FlexGrow, value);
  448. style.set_property(CSS::PropertyID::FlexShrink, value);
  449. style.set_property(CSS::PropertyID::FlexBasis, value);
  450. return;
  451. }
  452. if (property_id == CSS::PropertyID::FlexFlow) {
  453. if (value.is_flex_flow()) {
  454. auto const& flex_flow = value.as_flex_flow();
  455. style.set_property(CSS::PropertyID::FlexDirection, flex_flow.flex_direction());
  456. style.set_property(CSS::PropertyID::FlexWrap, flex_flow.flex_wrap());
  457. return;
  458. }
  459. style.set_property(CSS::PropertyID::FlexDirection, value);
  460. style.set_property(CSS::PropertyID::FlexWrap, value);
  461. return;
  462. }
  463. style.set_property(property_id, value);
  464. }
  465. static RefPtr<StyleValue> get_custom_property(DOM::Element const& element, FlyString const& custom_property_name)
  466. {
  467. for (auto const* current_element = &element; current_element; current_element = current_element->parent_element()) {
  468. if (auto it = current_element->custom_properties().find(custom_property_name); it != current_element->custom_properties().end())
  469. return it->value.value;
  470. }
  471. return nullptr;
  472. }
  473. bool StyleComputer::expand_unresolved_values(DOM::Element& element, StringView property_name, HashMap<FlyString, NonnullRefPtr<PropertyDependencyNode>>& dependencies, Vector<Parser::ComponentValue> const& source, Vector<Parser::ComponentValue>& dest, size_t source_start_index) const
  474. {
  475. // FIXME: Do this better!
  476. // We build a copy of the tree of ComponentValues, with all var()s and attr()s replaced with their contents.
  477. // This is a very naive solution, and we could do better if the CSS Parser could accept tokens one at a time.
  478. // Arbitrary large value chosen to avoid the billion-laughs attack.
  479. // https://www.w3.org/TR/css-variables-1/#long-variables
  480. const size_t MAX_VALUE_COUNT = 16384;
  481. if (source.size() + dest.size() > MAX_VALUE_COUNT) {
  482. dbgln("Stopped expanding CSS variables: maximum length reached.");
  483. return false;
  484. }
  485. auto get_dependency_node = [&](auto name) -> NonnullRefPtr<PropertyDependencyNode> {
  486. if (auto existing = dependencies.get(name); existing.has_value())
  487. return *existing.value();
  488. auto new_node = PropertyDependencyNode::create(name);
  489. dependencies.set(name, new_node);
  490. return new_node;
  491. };
  492. for (size_t source_index = source_start_index; source_index < source.size(); source_index++) {
  493. auto const& value = source[source_index];
  494. if (value.is_function()) {
  495. if (value.function().name().equals_ignoring_case("var"sv)) {
  496. auto const& var_contents = value.function().values();
  497. if (var_contents.is_empty())
  498. return false;
  499. auto const& custom_property_name_token = var_contents.first();
  500. if (!custom_property_name_token.is(Parser::Token::Type::Ident))
  501. return false;
  502. auto custom_property_name = custom_property_name_token.token().ident();
  503. if (!custom_property_name.starts_with("--"sv))
  504. return false;
  505. // Detect dependency cycles. https://www.w3.org/TR/css-variables-1/#cycles
  506. // We do not do this by the spec, since we are not keeping a graph of var dependencies around,
  507. // but rebuilding it every time.
  508. if (custom_property_name == property_name)
  509. return false;
  510. auto parent = get_dependency_node(property_name);
  511. auto child = get_dependency_node(custom_property_name);
  512. parent->add_child(child);
  513. if (parent->has_cycles())
  514. return false;
  515. if (auto custom_property_value = get_custom_property(element, custom_property_name)) {
  516. VERIFY(custom_property_value->is_unresolved());
  517. if (!expand_unresolved_values(element, custom_property_name, dependencies, custom_property_value->as_unresolved().values(), dest, 0))
  518. return false;
  519. continue;
  520. }
  521. // Use the provided fallback value, if any.
  522. if (var_contents.size() > 2 && var_contents[1].is(Parser::Token::Type::Comma)) {
  523. if (!expand_unresolved_values(element, property_name, dependencies, var_contents, dest, 2))
  524. return false;
  525. continue;
  526. }
  527. } else if (value.function().name().equals_ignoring_case("attr"sv)) {
  528. // https://drafts.csswg.org/css-values-5/#attr-substitution
  529. auto const& attr_contents = value.function().values();
  530. if (attr_contents.is_empty())
  531. return false;
  532. auto const& attr_name_token = attr_contents.first();
  533. if (!attr_name_token.is(Parser::Token::Type::Ident))
  534. return false;
  535. auto attr_name = attr_name_token.token().ident();
  536. auto attr_value = element.get_attribute(attr_name);
  537. // 1. If the attr() function has a substitution value, replace the attr() function by the substitution value.
  538. if (!attr_value.is_null()) {
  539. // FIXME: attr() should also accept an optional type argument, not just strings.
  540. dest.empend(Parser::Token::of_string(attr_value));
  541. continue;
  542. }
  543. // 2. Otherwise, if the attr() function has a fallback value as its last argument, replace the attr() function by the fallback value.
  544. // If there are any var() or attr() references in the fallback, substitute them as well.
  545. if (attr_contents.size() > 2 && attr_contents[1].is(Parser::Token::Type::Comma)) {
  546. if (!expand_unresolved_values(element, property_name, dependencies, attr_contents, dest, 2))
  547. return false;
  548. continue;
  549. }
  550. // 3. Otherwise, the property containing the attr() function is invalid at computed-value time.
  551. return false;
  552. }
  553. auto const& source_function = value.function();
  554. Vector<Parser::ComponentValue> function_values;
  555. if (!expand_unresolved_values(element, property_name, dependencies, source_function.values(), function_values, 0))
  556. return false;
  557. NonnullRefPtr<Parser::Function> function = Parser::Function::create(source_function.name(), move(function_values));
  558. dest.empend(function);
  559. continue;
  560. }
  561. if (value.is_block()) {
  562. auto const& source_block = value.block();
  563. Vector<Parser::ComponentValue> block_values;
  564. if (!expand_unresolved_values(element, property_name, dependencies, source_block.values(), block_values, 0))
  565. return false;
  566. NonnullRefPtr<Parser::Block> block = Parser::Block::create(source_block.token(), move(block_values));
  567. dest.empend(move(block));
  568. continue;
  569. }
  570. dest.empend(value.token());
  571. }
  572. return true;
  573. }
  574. RefPtr<StyleValue> StyleComputer::resolve_unresolved_style_value(DOM::Element& element, PropertyID property_id, UnresolvedStyleValue const& unresolved) const
  575. {
  576. // Unresolved always contains a var() or attr(), unless it is a custom property's value, in which case we shouldn't be trying
  577. // to produce a different StyleValue from it.
  578. VERIFY(unresolved.contains_var_or_attr());
  579. Vector<Parser::ComponentValue> expanded_values;
  580. HashMap<FlyString, NonnullRefPtr<PropertyDependencyNode>> dependencies;
  581. if (!expand_unresolved_values(element, string_from_property_id(property_id), dependencies, unresolved.values(), expanded_values, 0))
  582. return {};
  583. if (auto parsed_value = Parser::Parser::parse_css_value({}, Parser::ParsingContext { document() }, property_id, expanded_values))
  584. return parsed_value.release_nonnull();
  585. return {};
  586. }
  587. void StyleComputer::cascade_declarations(StyleProperties& style, DOM::Element& element, Vector<MatchingRule> const& matching_rules, CascadeOrigin cascade_origin, Important important) const
  588. {
  589. for (auto const& match : matching_rules) {
  590. for (auto const& property : verify_cast<PropertyOwningCSSStyleDeclaration>(match.rule->declaration()).properties()) {
  591. if (important != property.important)
  592. continue;
  593. auto property_value = property.value;
  594. if (property.value->is_unresolved()) {
  595. if (auto resolved = resolve_unresolved_style_value(element, property.property_id, property.value->as_unresolved()))
  596. property_value = resolved.release_nonnull();
  597. }
  598. set_property_expanding_shorthands(style, property.property_id, property_value, m_document);
  599. }
  600. }
  601. if (cascade_origin == CascadeOrigin::Author) {
  602. if (auto const* inline_style = verify_cast<ElementInlineCSSStyleDeclaration>(element.inline_style())) {
  603. for (auto const& property : inline_style->properties()) {
  604. if (important != property.important)
  605. continue;
  606. auto property_value = property.value;
  607. if (property.value->is_unresolved()) {
  608. if (auto resolved = resolve_unresolved_style_value(element, property.property_id, property.value->as_unresolved()))
  609. property_value = resolved.release_nonnull();
  610. }
  611. set_property_expanding_shorthands(style, property.property_id, property_value, m_document);
  612. }
  613. }
  614. }
  615. }
  616. static void cascade_custom_properties(DOM::Element& element, Vector<MatchingRule> const& matching_rules)
  617. {
  618. size_t needed_capacity = 0;
  619. for (auto const& matching_rule : matching_rules)
  620. needed_capacity += verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties().size();
  621. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style()))
  622. needed_capacity += inline_style->custom_properties().size();
  623. HashMap<FlyString, StyleProperty> custom_properties;
  624. custom_properties.ensure_capacity(needed_capacity);
  625. for (auto const& matching_rule : matching_rules) {
  626. for (auto const& it : verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties())
  627. custom_properties.set(it.key, it.value);
  628. }
  629. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style())) {
  630. for (auto const& it : inline_style->custom_properties())
  631. custom_properties.set(it.key, it.value);
  632. }
  633. element.set_custom_properties(move(custom_properties));
  634. }
  635. // https://www.w3.org/TR/css-cascade/#cascading
  636. void StyleComputer::compute_cascaded_values(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  637. {
  638. // First, we collect all the CSS rules whose selectors match `element`:
  639. MatchingRuleSet matching_rule_set;
  640. matching_rule_set.user_agent_rules = collect_matching_rules(element, CascadeOrigin::UserAgent, pseudo_element);
  641. sort_matching_rules(matching_rule_set.user_agent_rules);
  642. matching_rule_set.author_rules = collect_matching_rules(element, CascadeOrigin::Author, pseudo_element);
  643. sort_matching_rules(matching_rule_set.author_rules);
  644. // Then we resolve all the CSS custom properties ("variables") for this element:
  645. // FIXME: Look into how custom properties should interact with pseudo elements and support that properly.
  646. if (!pseudo_element.has_value())
  647. cascade_custom_properties(element, matching_rule_set.author_rules);
  648. // Then we apply the declarations from the matched rules in cascade order:
  649. // Normal user agent declarations
  650. cascade_declarations(style, element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::No);
  651. // FIXME: Normal user declarations
  652. // Author presentational hints (NOTE: The spec doesn't say exactly how to prioritize these.)
  653. element.apply_presentational_hints(style);
  654. // Normal author declarations
  655. cascade_declarations(style, element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::No);
  656. // FIXME: Animation declarations [css-animations-1]
  657. // Important author declarations
  658. cascade_declarations(style, element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::Yes);
  659. // FIXME: Important user declarations
  660. // Important user agent declarations
  661. cascade_declarations(style, element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::Yes);
  662. // FIXME: Transition declarations [css-transitions-1]
  663. }
  664. static DOM::Element const* get_parent_element(DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element)
  665. {
  666. // Pseudo-elements treat their originating element as their parent.
  667. DOM::Element const* parent_element = nullptr;
  668. if (pseudo_element.has_value()) {
  669. parent_element = element;
  670. } else if (element) {
  671. parent_element = element->parent_element();
  672. }
  673. return parent_element;
  674. }
  675. static NonnullRefPtr<StyleValue> get_inherit_value(CSS::PropertyID property_id, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element)
  676. {
  677. auto* parent_element = get_parent_element(element, pseudo_element);
  678. if (!parent_element || !parent_element->computed_css_values())
  679. return property_initial_value(property_id);
  680. return parent_element->computed_css_values()->property(property_id);
  681. };
  682. void StyleComputer::compute_defaulted_property_value(StyleProperties& style, DOM::Element const* element, CSS::PropertyID property_id, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  683. {
  684. // FIXME: If we don't know the correct initial value for a property, we fall back to InitialStyleValue.
  685. auto& value_slot = style.m_property_values[to_underlying(property_id)];
  686. if (!value_slot) {
  687. if (is_inherited_property(property_id))
  688. style.m_property_values[to_underlying(property_id)] = get_inherit_value(property_id, element, pseudo_element);
  689. else
  690. style.m_property_values[to_underlying(property_id)] = property_initial_value(property_id);
  691. return;
  692. }
  693. if (value_slot->is_initial()) {
  694. value_slot = property_initial_value(property_id);
  695. return;
  696. }
  697. if (value_slot->is_inherit()) {
  698. value_slot = get_inherit_value(property_id, element, pseudo_element);
  699. return;
  700. }
  701. // https://www.w3.org/TR/css-cascade-4/#inherit-initial
  702. // If the cascaded value of a property is the unset keyword,
  703. if (value_slot->is_unset()) {
  704. if (is_inherited_property(property_id)) {
  705. // then if it is an inherited property, this is treated as inherit,
  706. value_slot = get_inherit_value(property_id, element, pseudo_element);
  707. } else {
  708. // and if it is not, this is treated as initial.
  709. value_slot = property_initial_value(property_id);
  710. }
  711. }
  712. }
  713. // https://www.w3.org/TR/css-cascade/#defaulting
  714. void StyleComputer::compute_defaulted_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  715. {
  716. // Walk the list of all known CSS properties and:
  717. // - Add them to `style` if they are missing.
  718. // - Resolve `inherit` and `initial` as needed.
  719. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  720. auto property_id = (CSS::PropertyID)i;
  721. compute_defaulted_property_value(style, element, property_id, pseudo_element);
  722. }
  723. }
  724. float StyleComputer::root_element_font_size() const
  725. {
  726. constexpr float default_root_element_font_size = 10;
  727. auto const* root_element = m_document.first_child_of_type<HTML::HTMLHtmlElement>();
  728. if (!root_element)
  729. return default_root_element_font_size;
  730. auto const* computed_root_style = root_element->computed_css_values();
  731. if (!computed_root_style)
  732. return default_root_element_font_size;
  733. auto root_value = computed_root_style->property(CSS::PropertyID::FontSize);
  734. return root_value->to_length().to_px(viewport_rect(), computed_root_style->computed_font().pixel_metrics(), default_root_element_font_size, default_root_element_font_size);
  735. }
  736. void StyleComputer::compute_font(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  737. {
  738. // To compute the font, first ensure that we've defaulted the relevant CSS font properties.
  739. // FIXME: This should be more sophisticated.
  740. compute_defaulted_property_value(style, element, CSS::PropertyID::FontFamily, pseudo_element);
  741. compute_defaulted_property_value(style, element, CSS::PropertyID::FontSize, pseudo_element);
  742. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStyle, pseudo_element);
  743. compute_defaulted_property_value(style, element, CSS::PropertyID::FontWeight, pseudo_element);
  744. auto* parent_element = get_parent_element(element, pseudo_element);
  745. auto font_size = style.property(CSS::PropertyID::FontSize);
  746. auto font_style = style.property(CSS::PropertyID::FontStyle);
  747. auto font_weight = style.property(CSS::PropertyID::FontWeight);
  748. int weight = Gfx::FontWeight::Regular;
  749. if (font_weight->is_identifier()) {
  750. switch (static_cast<IdentifierStyleValue const&>(*font_weight).id()) {
  751. case CSS::ValueID::Normal:
  752. weight = Gfx::FontWeight::Regular;
  753. break;
  754. case CSS::ValueID::Bold:
  755. weight = Gfx::FontWeight::Bold;
  756. break;
  757. case CSS::ValueID::Lighter:
  758. // FIXME: This should be relative to the parent.
  759. weight = Gfx::FontWeight::Regular;
  760. break;
  761. case CSS::ValueID::Bolder:
  762. // FIXME: This should be relative to the parent.
  763. weight = Gfx::FontWeight::Bold;
  764. break;
  765. default:
  766. break;
  767. }
  768. } else if (font_weight->has_integer()) {
  769. int font_weight_integer = font_weight->to_integer();
  770. if (font_weight_integer <= Gfx::FontWeight::Regular)
  771. weight = Gfx::FontWeight::Regular;
  772. else if (font_weight_integer <= Gfx::FontWeight::Bold)
  773. weight = Gfx::FontWeight::Bold;
  774. else
  775. weight = Gfx::FontWeight::Black;
  776. } else if (font_weight->is_calculated()) {
  777. auto maybe_weight = font_weight->as_calculated().resolve_integer();
  778. if (maybe_weight.has_value())
  779. weight = maybe_weight.value();
  780. }
  781. bool bold = weight > Gfx::FontWeight::Regular;
  782. float font_size_in_px = 10;
  783. if (font_size->is_identifier()) {
  784. switch (static_cast<IdentifierStyleValue const&>(*font_size).id()) {
  785. case CSS::ValueID::XxSmall:
  786. case CSS::ValueID::XSmall:
  787. case CSS::ValueID::Small:
  788. case CSS::ValueID::Medium:
  789. // FIXME: Should be based on "user's default font size"
  790. font_size_in_px = 10;
  791. break;
  792. case CSS::ValueID::Large:
  793. case CSS::ValueID::XLarge:
  794. case CSS::ValueID::XxLarge:
  795. case CSS::ValueID::XxxLarge:
  796. // FIXME: Should be based on "user's default font size"
  797. font_size_in_px = 12;
  798. break;
  799. case CSS::ValueID::Smaller:
  800. case CSS::ValueID::Larger:
  801. // FIXME: Should be based on parent element
  802. break;
  803. default:
  804. break;
  805. }
  806. } else {
  807. float root_font_size = root_element_font_size();
  808. Gfx::FontPixelMetrics font_metrics;
  809. if (parent_element && parent_element->computed_css_values())
  810. font_metrics = parent_element->computed_css_values()->computed_font().pixel_metrics();
  811. else
  812. font_metrics = Gfx::FontDatabase::default_font().pixel_metrics();
  813. auto parent_font_size = [&]() -> float {
  814. if (!parent_element || !parent_element->computed_css_values())
  815. return font_size_in_px;
  816. auto value = parent_element->computed_css_values()->property(CSS::PropertyID::FontSize);
  817. if (value->is_length()) {
  818. auto length = static_cast<LengthStyleValue const&>(*value).to_length();
  819. if (length.is_absolute() || length.is_relative())
  820. return length.to_px(viewport_rect(), font_metrics, font_size_in_px, root_font_size);
  821. }
  822. return font_size_in_px;
  823. };
  824. Optional<Length> maybe_length;
  825. if (font_size->is_percentage()) {
  826. // Percentages refer to parent element's font size
  827. maybe_length = Length::make_px(font_size->as_percentage().percentage().as_fraction() * parent_font_size());
  828. } else if (font_size->is_length()) {
  829. maybe_length = font_size->to_length();
  830. } else if (font_size->is_calculated()) {
  831. maybe_length = Length::make_calculated(font_size->as_calculated());
  832. }
  833. if (maybe_length.has_value()) {
  834. // FIXME: Support font-size: calc(...)
  835. // Theoretically we can do this now, but to resolve it we need a layout_node which we might not have. :^(
  836. if (!maybe_length->is_calculated()) {
  837. auto px = maybe_length.value().to_px(viewport_rect(), font_metrics, parent_font_size(), root_font_size);
  838. if (px != 0)
  839. font_size_in_px = px;
  840. }
  841. }
  842. }
  843. int slope = Gfx::name_to_slope("Normal"sv);
  844. // FIXME: Implement oblique <angle>
  845. if (font_style->is_identifier()) {
  846. switch (static_cast<IdentifierStyleValue const&>(*font_style).id()) {
  847. case CSS::ValueID::Italic:
  848. slope = Gfx::name_to_slope("Italic"sv);
  849. break;
  850. case CSS::ValueID::Oblique:
  851. slope = Gfx::name_to_slope("Oblique"sv);
  852. break;
  853. case CSS::ValueID::Normal:
  854. default:
  855. break;
  856. }
  857. }
  858. // FIXME: Implement the full font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  859. // Note: This is modified by the find_font() lambda
  860. FontSelector font_selector;
  861. bool monospace = false;
  862. auto find_font = [&](String const& family) -> RefPtr<Gfx::Font> {
  863. float font_size_in_pt = font_size_in_px * 0.75f;
  864. font_selector = { family, font_size_in_pt, weight, slope };
  865. if (auto it = m_loaded_fonts.find(family); it != m_loaded_fonts.end()) {
  866. auto& loader = *it->value;
  867. if (auto found_font = loader.font_with_point_size(font_size_in_pt))
  868. return found_font;
  869. }
  870. if (auto found_font = FontCache::the().get(font_selector))
  871. return found_font;
  872. if (auto found_font = Gfx::FontDatabase::the().get(family, font_size_in_pt, weight, slope, Gfx::Font::AllowInexactSizeMatch::Yes))
  873. return found_font;
  874. return {};
  875. };
  876. // FIXME: Replace hard-coded font names with a relevant call to FontDatabase.
  877. // Currently, we cannot request the default font's name, or request it at a specific size and weight.
  878. // So, hard-coded font names it is.
  879. auto find_generic_font = [&](ValueID font_id) -> RefPtr<Gfx::Font> {
  880. switch (font_id) {
  881. case ValueID::Monospace:
  882. case ValueID::UiMonospace:
  883. monospace = true;
  884. return find_font("Csilla");
  885. case ValueID::Serif:
  886. return find_font("Roman");
  887. case ValueID::Fantasy:
  888. return find_font("Comic Book");
  889. case ValueID::SansSerif:
  890. case ValueID::Cursive:
  891. case ValueID::UiSerif:
  892. case ValueID::UiSansSerif:
  893. case ValueID::UiRounded:
  894. return find_font("Katica");
  895. default:
  896. return {};
  897. }
  898. };
  899. RefPtr<Gfx::Font> found_font;
  900. auto family_value = style.property(PropertyID::FontFamily);
  901. if (family_value->is_value_list()) {
  902. auto const& family_list = static_cast<StyleValueList const&>(*family_value).values();
  903. for (auto const& family : family_list) {
  904. if (family.is_identifier()) {
  905. found_font = find_generic_font(family.to_identifier());
  906. } else if (family.is_string()) {
  907. found_font = find_font(family.to_string());
  908. }
  909. if (found_font)
  910. break;
  911. }
  912. } else if (family_value->is_identifier()) {
  913. found_font = find_generic_font(family_value->to_identifier());
  914. } else if (family_value->is_string()) {
  915. found_font = find_font(family_value->to_string());
  916. }
  917. if (!found_font) {
  918. found_font = StyleProperties::font_fallback(monospace, bold);
  919. }
  920. FontCache::the().set(font_selector, *found_font);
  921. style.set_property(CSS::PropertyID::FontSize, LengthStyleValue::create(CSS::Length::make_px(font_size_in_px)));
  922. style.set_property(CSS::PropertyID::FontWeight, NumericStyleValue::create_integer(weight));
  923. style.set_computed_font(found_font.release_nonnull());
  924. }
  925. Gfx::Font const& StyleComputer::initial_font() const
  926. {
  927. // FIXME: This is not correct.
  928. return StyleProperties::font_fallback(false, false);
  929. }
  930. void StyleComputer::absolutize_values(StyleProperties& style, DOM::Element const*, Optional<CSS::Selector::PseudoElement>) const
  931. {
  932. auto font_metrics = style.computed_font().pixel_metrics();
  933. float root_font_size = root_element_font_size();
  934. float font_size = style.property(CSS::PropertyID::FontSize)->to_length().to_px(viewport_rect(), font_metrics, root_font_size, root_font_size);
  935. for (size_t i = 0; i < style.m_property_values.size(); ++i) {
  936. auto& value_slot = style.m_property_values[i];
  937. if (!value_slot)
  938. continue;
  939. value_slot = value_slot->absolutized(viewport_rect(), font_metrics, font_size, root_font_size);
  940. }
  941. }
  942. enum class BoxTypeTransformation {
  943. None,
  944. Blockify,
  945. Inlinify,
  946. };
  947. static BoxTypeTransformation required_box_type_transformation(StyleProperties const& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement> const&)
  948. {
  949. // Absolute positioning or floating an element blockifies the box’s display type. [CSS2]
  950. if (style.position() == CSS::Position::Absolute || style.position() == CSS::Position::Fixed || style.float_() != CSS::Float::None)
  951. return BoxTypeTransformation::Blockify;
  952. // FIXME: Containment in a ruby container inlinifies the box’s display type, as described in [CSS-RUBY-1].
  953. // A parent with a grid or flex display value blockifies the box’s display type. [CSS-GRID-1] [CSS-FLEXBOX-1]
  954. if (element.parent_element() && element.parent_element()->computed_css_values()) {
  955. auto const& parent_display = element.parent_element()->computed_css_values()->display();
  956. if (parent_display.is_grid_inside() || parent_display.is_flex_inside())
  957. return BoxTypeTransformation::Blockify;
  958. }
  959. return BoxTypeTransformation::None;
  960. }
  961. // https://drafts.csswg.org/css-display/#transformations
  962. void StyleComputer::transform_box_type_if_needed(StyleProperties& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  963. {
  964. // 2.7. Automatic Box Type Transformations
  965. // Some layout effects require blockification or inlinification of the box type,
  966. // which sets the box’s computed outer display type to block or inline (respectively).
  967. // (This has no effect on display types that generate no box at all, such as none or contents.)
  968. // 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.
  969. //
  970. // FIXME: If an inline box (inline flow) is inlinified, it recursively inlinifies all of its in-flow children,
  971. // so that no block-level descendants break up the inline formatting context in which it participates.
  972. //
  973. // FIXME: For legacy reasons, if an inline block box (inline flow-root) is blockified, it becomes a block box (losing its flow-root nature).
  974. // For consistency, a run-in flow-root box also blockifies to a block box.
  975. //
  976. // FIXME: If a layout-internal box is blockified, its inner display type converts to flow so that it becomes a block container.
  977. // Inlinification has no effect on layout-internal boxes. (However, placement in such an inline context will typically cause them
  978. // to be wrapped in an appropriately-typed anonymous inline-level box.)
  979. auto display = style.display();
  980. if (display.is_none() || display.is_contents())
  981. return;
  982. switch (required_box_type_transformation(style, element, pseudo_element)) {
  983. case BoxTypeTransformation::None:
  984. break;
  985. case BoxTypeTransformation::Blockify:
  986. if (!display.is_block_outside()) {
  987. // FIXME: We only want to change the outer display type here, but we don't have a nice API
  988. // to do that specifically. For now, we simply check for "inline-flex" and convert
  989. // that to "flex".
  990. if (display.is_flex_inside())
  991. style.set_property(CSS::PropertyID::Display, IdentifierStyleValue::create(CSS::ValueID::Flex));
  992. else
  993. style.set_property(CSS::PropertyID::Display, IdentifierStyleValue::create(CSS::ValueID::Block));
  994. }
  995. break;
  996. case BoxTypeTransformation::Inlinify:
  997. if (!display.is_inline_outside())
  998. style.set_property(CSS::PropertyID::Display, IdentifierStyleValue::create(CSS::ValueID::Inline));
  999. break;
  1000. }
  1001. }
  1002. NonnullRefPtr<StyleProperties> StyleComputer::create_document_style() const
  1003. {
  1004. auto style = StyleProperties::create();
  1005. compute_font(style, nullptr, {});
  1006. compute_defaulted_values(style, nullptr, {});
  1007. absolutize_values(style, nullptr, {});
  1008. style->set_property(CSS::PropertyID::Width, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().width())));
  1009. style->set_property(CSS::PropertyID::Height, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().height())));
  1010. return style;
  1011. }
  1012. NonnullRefPtr<StyleProperties> StyleComputer::compute_style(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1013. {
  1014. build_rule_cache_if_needed();
  1015. auto style = StyleProperties::create();
  1016. // 1. Perform the cascade. This produces the "specified style"
  1017. compute_cascaded_values(style, element, pseudo_element);
  1018. // 2. Compute the font, since that may be needed for font-relative CSS units
  1019. compute_font(style, &element, pseudo_element);
  1020. // 3. Absolutize values, turning font/viewport relative lengths into absolute lengths
  1021. absolutize_values(style, &element, pseudo_element);
  1022. // 4. Default the values, applying inheritance and 'initial' as needed
  1023. compute_defaulted_values(style, &element, pseudo_element);
  1024. // 5. Run automatic box type transformations
  1025. transform_box_type_if_needed(style, element, pseudo_element);
  1026. return style;
  1027. }
  1028. PropertyDependencyNode::PropertyDependencyNode(String name)
  1029. : m_name(move(name))
  1030. {
  1031. }
  1032. void PropertyDependencyNode::add_child(NonnullRefPtr<PropertyDependencyNode> new_child)
  1033. {
  1034. for (auto const& child : m_children) {
  1035. if (child.m_name == new_child->m_name)
  1036. return;
  1037. }
  1038. // We detect self-reference already.
  1039. VERIFY(new_child->m_name != m_name);
  1040. m_children.append(move(new_child));
  1041. }
  1042. bool PropertyDependencyNode::has_cycles()
  1043. {
  1044. if (m_marked)
  1045. return true;
  1046. TemporaryChange change { m_marked, true };
  1047. for (auto& child : m_children) {
  1048. if (child.has_cycles())
  1049. return true;
  1050. }
  1051. return false;
  1052. }
  1053. void StyleComputer::build_rule_cache_if_needed() const
  1054. {
  1055. if (m_rule_cache)
  1056. return;
  1057. const_cast<StyleComputer&>(*this).build_rule_cache();
  1058. }
  1059. void StyleComputer::build_rule_cache()
  1060. {
  1061. // FIXME: Make a rule cache for UA style as well.
  1062. m_rule_cache = make<RuleCache>();
  1063. size_t num_class_rules = 0;
  1064. size_t num_id_rules = 0;
  1065. size_t num_tag_name_rules = 0;
  1066. size_t num_pseudo_element_rules = 0;
  1067. Vector<MatchingRule> matching_rules;
  1068. size_t style_sheet_index = 0;
  1069. for_each_stylesheet(CascadeOrigin::Author, [&](auto& sheet) {
  1070. size_t rule_index = 0;
  1071. static_cast<CSSStyleSheet const&>(sheet).for_each_effective_style_rule([&](auto const& rule) {
  1072. size_t selector_index = 0;
  1073. for (CSS::Selector const& selector : rule.selectors()) {
  1074. MatchingRule matching_rule { rule, style_sheet_index, rule_index, selector_index, selector.specificity() };
  1075. bool added_to_bucket = false;
  1076. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  1077. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::PseudoElement) {
  1078. m_rule_cache->rules_by_pseudo_element.ensure(simple_selector.pseudo_element()).append(move(matching_rule));
  1079. ++num_pseudo_element_rules;
  1080. added_to_bucket = true;
  1081. break;
  1082. }
  1083. }
  1084. if (!added_to_bucket) {
  1085. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  1086. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Id) {
  1087. m_rule_cache->rules_by_id.ensure(simple_selector.name()).append(move(matching_rule));
  1088. ++num_id_rules;
  1089. added_to_bucket = true;
  1090. break;
  1091. }
  1092. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Class) {
  1093. m_rule_cache->rules_by_class.ensure(simple_selector.name()).append(move(matching_rule));
  1094. ++num_class_rules;
  1095. added_to_bucket = true;
  1096. break;
  1097. }
  1098. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::TagName) {
  1099. m_rule_cache->rules_by_tag_name.ensure(simple_selector.name()).append(move(matching_rule));
  1100. ++num_tag_name_rules;
  1101. added_to_bucket = true;
  1102. break;
  1103. }
  1104. }
  1105. }
  1106. if (!added_to_bucket)
  1107. m_rule_cache->other_rules.append(move(matching_rule));
  1108. ++selector_index;
  1109. }
  1110. ++rule_index;
  1111. });
  1112. ++style_sheet_index;
  1113. });
  1114. if constexpr (LIBWEB_CSS_DEBUG) {
  1115. dbgln("Built rule cache!");
  1116. dbgln(" ID: {}", num_id_rules);
  1117. dbgln(" Class: {}", num_class_rules);
  1118. dbgln(" TagName: {}", num_tag_name_rules);
  1119. dbgln("PseudoElement: {}", num_pseudo_element_rules);
  1120. dbgln(" Other: {}", m_rule_cache->other_rules.size());
  1121. dbgln(" Total: {}", num_class_rules + num_id_rules + num_tag_name_rules + m_rule_cache->other_rules.size());
  1122. }
  1123. }
  1124. void StyleComputer::invalidate_rule_cache()
  1125. {
  1126. m_rule_cache = nullptr;
  1127. }
  1128. Gfx::IntRect StyleComputer::viewport_rect() const
  1129. {
  1130. if (auto const* browsing_context = document().browsing_context())
  1131. return browsing_context->viewport_rect();
  1132. return {};
  1133. }
  1134. void StyleComputer::did_load_font([[maybe_unused]] FlyString const& family_name)
  1135. {
  1136. document().invalidate_style();
  1137. }
  1138. void StyleComputer::load_fonts_from_sheet(CSSStyleSheet const& sheet)
  1139. {
  1140. for (auto const& rule : static_cast<CSSStyleSheet const&>(sheet).rules()) {
  1141. if (!is<CSSFontFaceRule>(rule))
  1142. continue;
  1143. auto const& font_face = static_cast<CSSFontFaceRule const&>(rule).font_face();
  1144. if (font_face.sources().is_empty())
  1145. continue;
  1146. if (m_loaded_fonts.contains(font_face.font_family()))
  1147. continue;
  1148. LoadRequest request;
  1149. auto url = m_document.parse_url(font_face.sources().first().url.to_string());
  1150. auto loader = make<FontLoader>(const_cast<StyleComputer&>(*this), font_face.font_family(), move(url));
  1151. const_cast<StyleComputer&>(*this).m_loaded_fonts.set(font_face.font_family(), move(loader));
  1152. }
  1153. }
  1154. }