StyleComputer.cpp 65 KB

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