StyleComputer.cpp 75 KB

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