StyleComputer.cpp 59 KB

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