StyleComputer.cpp 66 KB

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