StyleComputer.cpp 75 KB

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