StyleComputer.cpp 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115
  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. * Copyright (c) 2024, Matthew Olsson <mattco@serenityos.org>
  6. *
  7. * SPDX-License-Identifier: BSD-2-Clause
  8. */
  9. #include <AK/BinarySearch.h>
  10. #include <AK/Debug.h>
  11. #include <AK/Error.h>
  12. #include <AK/Find.h>
  13. #include <AK/Function.h>
  14. #include <AK/HashMap.h>
  15. #include <AK/Math.h>
  16. #include <AK/QuickSort.h>
  17. #include <AK/TemporaryChange.h>
  18. #include <LibGfx/Font/Font.h>
  19. #include <LibGfx/Font/FontDatabase.h>
  20. #include <LibGfx/Font/FontStyleMapping.h>
  21. #include <LibGfx/Font/OpenType/Font.h>
  22. #include <LibGfx/Font/ScaledFont.h>
  23. #include <LibGfx/Font/VectorFont.h>
  24. #include <LibGfx/Font/WOFF/Font.h>
  25. #include <LibGfx/Font/WOFF2/Font.h>
  26. #include <LibWeb/Animations/AnimationEffect.h>
  27. #include <LibWeb/Animations/DocumentTimeline.h>
  28. #include <LibWeb/Animations/TimingFunction.h>
  29. #include <LibWeb/CSS/AnimationEvent.h>
  30. #include <LibWeb/CSS/CSSAnimation.h>
  31. #include <LibWeb/CSS/CSSFontFaceRule.h>
  32. #include <LibWeb/CSS/CSSImportRule.h>
  33. #include <LibWeb/CSS/CSSStyleRule.h>
  34. #include <LibWeb/CSS/Parser/Parser.h>
  35. #include <LibWeb/CSS/SelectorEngine.h>
  36. #include <LibWeb/CSS/StyleComputer.h>
  37. #include <LibWeb/CSS/StyleSheet.h>
  38. #include <LibWeb/CSS/StyleValues/AngleStyleValue.h>
  39. #include <LibWeb/CSS/StyleValues/BorderRadiusStyleValue.h>
  40. #include <LibWeb/CSS/StyleValues/ColorStyleValue.h>
  41. #include <LibWeb/CSS/StyleValues/CustomIdentStyleValue.h>
  42. #include <LibWeb/CSS/StyleValues/DisplayStyleValue.h>
  43. #include <LibWeb/CSS/StyleValues/EasingStyleValue.h>
  44. #include <LibWeb/CSS/StyleValues/FilterValueListStyleValue.h>
  45. #include <LibWeb/CSS/StyleValues/GridTrackPlacementStyleValue.h>
  46. #include <LibWeb/CSS/StyleValues/GridTrackSizeListStyleValue.h>
  47. #include <LibWeb/CSS/StyleValues/IdentifierStyleValue.h>
  48. #include <LibWeb/CSS/StyleValues/IntegerStyleValue.h>
  49. #include <LibWeb/CSS/StyleValues/LengthStyleValue.h>
  50. #include <LibWeb/CSS/StyleValues/MathDepthStyleValue.h>
  51. #include <LibWeb/CSS/StyleValues/NumberStyleValue.h>
  52. #include <LibWeb/CSS/StyleValues/PercentageStyleValue.h>
  53. #include <LibWeb/CSS/StyleValues/PositionStyleValue.h>
  54. #include <LibWeb/CSS/StyleValues/RectStyleValue.h>
  55. #include <LibWeb/CSS/StyleValues/ShorthandStyleValue.h>
  56. #include <LibWeb/CSS/StyleValues/StringStyleValue.h>
  57. #include <LibWeb/CSS/StyleValues/StyleValueList.h>
  58. #include <LibWeb/CSS/StyleValues/TimeStyleValue.h>
  59. #include <LibWeb/CSS/StyleValues/TransformationStyleValue.h>
  60. #include <LibWeb/CSS/StyleValues/UnresolvedStyleValue.h>
  61. #include <LibWeb/CSS/StyleValues/UnsetStyleValue.h>
  62. #include <LibWeb/DOM/Document.h>
  63. #include <LibWeb/DOM/Element.h>
  64. #include <LibWeb/HTML/HTMLBRElement.h>
  65. #include <LibWeb/HTML/HTMLHtmlElement.h>
  66. #include <LibWeb/HTML/Scripting/TemporaryExecutionContext.h>
  67. #include <LibWeb/HighResolutionTime/TimeOrigin.h>
  68. #include <LibWeb/Layout/Node.h>
  69. #include <LibWeb/Loader/ResourceLoader.h>
  70. #include <LibWeb/Namespace.h>
  71. #include <LibWeb/Platform/FontPlugin.h>
  72. #include <LibWeb/ReferrerPolicy/AbstractOperations.h>
  73. #include <math.h>
  74. #include <stdio.h>
  75. namespace AK {
  76. // traits for FontFaceKey
  77. template<>
  78. struct Traits<Web::CSS::FontFaceKey> : public DefaultTraits<Web::CSS::FontFaceKey> {
  79. static unsigned hash(Web::CSS::FontFaceKey const& key) { return pair_int_hash(key.family_name.hash(), pair_int_hash(key.weight, key.slope)); }
  80. };
  81. }
  82. namespace Web::CSS {
  83. static DOM::Element const* element_to_inherit_style_from(DOM::Element const*, Optional<CSS::Selector::PseudoElement::Type>);
  84. static NonnullRefPtr<StyleValue const> get_inherit_value(JS::Realm& initial_value_context_realm, CSS::PropertyID, DOM::Element const*, Optional<CSS::Selector::PseudoElement::Type>);
  85. StyleComputer::StyleComputer(DOM::Document& document)
  86. : m_document(document)
  87. , m_default_font_metrics(16, Gfx::FontDatabase::default_font().pixel_metrics())
  88. , m_root_element_font_metrics(m_default_font_metrics)
  89. {
  90. }
  91. StyleComputer::~StyleComputer() = default;
  92. class StyleComputer::FontLoader : public ResourceClient {
  93. public:
  94. explicit FontLoader(StyleComputer& style_computer, FlyString family_name, Vector<Gfx::UnicodeRange> unicode_ranges, Vector<URL> urls)
  95. : m_style_computer(style_computer)
  96. , m_family_name(move(family_name))
  97. , m_unicode_ranges(move(unicode_ranges))
  98. , m_urls(move(urls))
  99. {
  100. }
  101. virtual ~FontLoader() override { }
  102. Vector<Gfx::UnicodeRange> const& unicode_ranges() const { return m_unicode_ranges; }
  103. virtual void resource_did_load() override
  104. {
  105. auto result = try_load_font();
  106. if (result.is_error())
  107. return start_loading_next_url();
  108. m_vector_font = result.release_value();
  109. m_style_computer.did_load_font(m_family_name);
  110. }
  111. virtual void resource_did_fail() override
  112. {
  113. }
  114. RefPtr<Gfx::Font> font_with_point_size(float point_size)
  115. {
  116. if (!m_vector_font) {
  117. start_loading_next_url();
  118. return nullptr;
  119. }
  120. return m_vector_font->scaled_font(point_size);
  121. }
  122. private:
  123. void start_loading_next_url()
  124. {
  125. if (resource() && resource()->is_pending())
  126. return;
  127. if (m_urls.is_empty())
  128. return;
  129. LoadRequest request;
  130. request.set_url(m_urls.take_first());
  131. // HACK: We're crudely computing the referer value and shoving it into the
  132. // request until fetch infrastructure is used here.
  133. auto referrer_url = ReferrerPolicy::strip_url_for_use_as_referrer(m_style_computer.document().url());
  134. if (referrer_url.has_value() && !request.headers().contains("Referer"))
  135. request.set_header("Referer", referrer_url->serialize());
  136. set_resource(ResourceLoader::the().load_resource(Resource::Type::Generic, request));
  137. }
  138. ErrorOr<NonnullRefPtr<Gfx::VectorFont>> try_load_font()
  139. {
  140. // 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
  141. auto mime_type = resource()->mime_type();
  142. if (mime_type == "font/ttf"sv || mime_type == "application/x-font-ttf"sv)
  143. return TRY(OpenType::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  144. if (mime_type == "font/woff"sv || mime_type == "application/font-woff"sv)
  145. return TRY(WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  146. if (mime_type == "font/woff2"sv || mime_type == "application/font-woff2"sv) {
  147. auto woff2 = WOFF2::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  148. if (woff2.is_error()) {
  149. dbgln("WOFF2 error: {}", woff2.error());
  150. return woff2.release_error();
  151. }
  152. return woff2.release_value();
  153. }
  154. auto ttf = OpenType::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  155. if (!ttf.is_error())
  156. return ttf.release_value();
  157. auto woff = WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  158. if (!woff.is_error())
  159. return woff.release_value();
  160. auto woff2 = WOFF2::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  161. if (!woff2.is_error())
  162. return woff2.release_value();
  163. return woff2.release_error();
  164. }
  165. StyleComputer& m_style_computer;
  166. FlyString m_family_name;
  167. Vector<Gfx::UnicodeRange> m_unicode_ranges;
  168. RefPtr<Gfx::VectorFont> m_vector_font;
  169. Vector<URL> m_urls;
  170. };
  171. struct StyleComputer::MatchingFontCandidate {
  172. FontFaceKey key;
  173. Variant<FontLoaderList*, Gfx::Typeface const*> loader_or_typeface;
  174. [[nodiscard]] RefPtr<Gfx::FontCascadeList const> font_with_point_size(float point_size) const
  175. {
  176. RefPtr<Gfx::FontCascadeList> font_list = Gfx::FontCascadeList::create();
  177. if (auto* loader_list = loader_or_typeface.get_pointer<FontLoaderList*>(); loader_list) {
  178. for (auto const& loader : **loader_list) {
  179. if (auto font = loader->font_with_point_size(point_size); font)
  180. font_list->add(*font, loader->unicode_ranges());
  181. }
  182. return font_list;
  183. }
  184. if (auto font = loader_or_typeface.get<Gfx::Typeface const*>()->get_font(point_size))
  185. font_list->add(*font);
  186. return font_list;
  187. }
  188. };
  189. static CSSStyleSheet& default_stylesheet(DOM::Document const& document)
  190. {
  191. static JS::Handle<CSSStyleSheet> sheet;
  192. if (!sheet.cell()) {
  193. extern StringView default_stylesheet_source;
  194. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), default_stylesheet_source));
  195. }
  196. return *sheet;
  197. }
  198. static CSSStyleSheet& quirks_mode_stylesheet(DOM::Document const& document)
  199. {
  200. static JS::Handle<CSSStyleSheet> sheet;
  201. if (!sheet.cell()) {
  202. extern StringView quirks_mode_stylesheet_source;
  203. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), quirks_mode_stylesheet_source));
  204. }
  205. return *sheet;
  206. }
  207. static CSSStyleSheet& mathml_stylesheet(DOM::Document const& document)
  208. {
  209. static JS::Handle<CSSStyleSheet> sheet;
  210. if (!sheet.cell()) {
  211. extern StringView mathml_stylesheet_source;
  212. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), mathml_stylesheet_source));
  213. }
  214. return *sheet;
  215. }
  216. static CSSStyleSheet& svg_stylesheet(DOM::Document const& document)
  217. {
  218. static JS::Handle<CSSStyleSheet> sheet;
  219. if (!sheet.cell()) {
  220. extern StringView svg_stylesheet_source;
  221. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), svg_stylesheet_source));
  222. }
  223. return *sheet;
  224. }
  225. template<typename Callback>
  226. void StyleComputer::for_each_stylesheet(CascadeOrigin cascade_origin, Callback callback) const
  227. {
  228. if (cascade_origin == CascadeOrigin::UserAgent) {
  229. callback(default_stylesheet(document()));
  230. if (document().in_quirks_mode())
  231. callback(quirks_mode_stylesheet(document()));
  232. callback(mathml_stylesheet(document()));
  233. callback(svg_stylesheet(document()));
  234. }
  235. if (cascade_origin == CascadeOrigin::User) {
  236. if (m_user_style_sheet)
  237. callback(*m_user_style_sheet);
  238. }
  239. if (cascade_origin == CascadeOrigin::Author) {
  240. for (auto const& sheet : document().style_sheets().sheets())
  241. callback(*sheet);
  242. }
  243. }
  244. StyleComputer::RuleCache const& StyleComputer::rule_cache_for_cascade_origin(CascadeOrigin cascade_origin) const
  245. {
  246. switch (cascade_origin) {
  247. case CascadeOrigin::Author:
  248. return *m_author_rule_cache;
  249. case CascadeOrigin::User:
  250. return *m_user_rule_cache;
  251. case CascadeOrigin::UserAgent:
  252. return *m_user_agent_rule_cache;
  253. default:
  254. TODO();
  255. }
  256. }
  257. [[nodiscard]] static bool filter_namespace_rule(DOM::Element const& element, MatchingRule const& rule)
  258. {
  259. // FIXME: Filter out non-default namespace using prefixes
  260. auto namespace_uri = rule.sheet->default_namespace();
  261. if (namespace_uri.has_value() && namespace_uri.value() != element.namespace_uri()) {
  262. return false;
  263. }
  264. return true;
  265. }
  266. Vector<MatchingRule> StyleComputer::collect_matching_rules(DOM::Element const& element, CascadeOrigin cascade_origin, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  267. {
  268. auto const& rule_cache = rule_cache_for_cascade_origin(cascade_origin);
  269. Vector<MatchingRule> rules_to_run;
  270. auto add_rules_to_run = [&](Vector<MatchingRule> const& rules) {
  271. rules_to_run.grow_capacity(rules_to_run.size() + rules.size());
  272. if (pseudo_element.has_value()) {
  273. for (auto const& rule : rules) {
  274. if (rule.contains_pseudo_element && filter_namespace_rule(element, rule))
  275. rules_to_run.append(rule);
  276. }
  277. } else {
  278. for (auto const& rule : rules) {
  279. if (filter_namespace_rule(element, rule))
  280. rules_to_run.append(rule);
  281. }
  282. }
  283. };
  284. for (auto const& class_name : element.class_names()) {
  285. if (auto it = rule_cache.rules_by_class.find(class_name); it != rule_cache.rules_by_class.end())
  286. add_rules_to_run(it->value);
  287. }
  288. if (auto id = element.id(); id.has_value()) {
  289. if (auto it = rule_cache.rules_by_id.find(id.value()); it != rule_cache.rules_by_id.end())
  290. add_rules_to_run(it->value);
  291. }
  292. if (auto it = rule_cache.rules_by_tag_name.find(element.local_name()); it != rule_cache.rules_by_tag_name.end())
  293. add_rules_to_run(it->value);
  294. add_rules_to_run(rule_cache.other_rules);
  295. Vector<MatchingRule> matching_rules;
  296. matching_rules.ensure_capacity(rules_to_run.size());
  297. for (auto const& rule_to_run : rules_to_run) {
  298. auto const& selector = rule_to_run.rule->selectors()[rule_to_run.selector_index];
  299. if (SelectorEngine::matches(selector, *rule_to_run.sheet, element, pseudo_element))
  300. matching_rules.append(rule_to_run);
  301. }
  302. return matching_rules;
  303. }
  304. static void sort_matching_rules(Vector<MatchingRule>& matching_rules)
  305. {
  306. quick_sort(matching_rules, [&](MatchingRule& a, MatchingRule& b) {
  307. auto const& a_selector = a.rule->selectors()[a.selector_index];
  308. auto const& b_selector = b.rule->selectors()[b.selector_index];
  309. auto a_specificity = a_selector->specificity();
  310. auto b_specificity = b_selector->specificity();
  311. if (a_selector->specificity() == b_selector->specificity()) {
  312. if (a.style_sheet_index == b.style_sheet_index)
  313. return a.rule_index < b.rule_index;
  314. return a.style_sheet_index < b.style_sheet_index;
  315. }
  316. return a_specificity < b_specificity;
  317. });
  318. }
  319. void StyleComputer::for_each_property_expanding_shorthands(PropertyID property_id, StyleValue const& value, Function<void(PropertyID, StyleValue const&)> const& set_longhand_property)
  320. {
  321. auto map_logical_property_to_real_property = [](PropertyID property_id) -> Optional<PropertyID> {
  322. // FIXME: Honor writing-mode, direction and text-orientation.
  323. switch (property_id) {
  324. case PropertyID::MarginBlockStart:
  325. return PropertyID::MarginTop;
  326. case PropertyID::MarginBlockEnd:
  327. return PropertyID::MarginBottom;
  328. case PropertyID::MarginInlineStart:
  329. return PropertyID::MarginLeft;
  330. case PropertyID::MarginInlineEnd:
  331. return PropertyID::MarginRight;
  332. case PropertyID::PaddingBlockStart:
  333. return PropertyID::PaddingTop;
  334. case PropertyID::PaddingBlockEnd:
  335. return PropertyID::PaddingBottom;
  336. case PropertyID::PaddingInlineStart:
  337. return PropertyID::PaddingLeft;
  338. case PropertyID::PaddingInlineEnd:
  339. return PropertyID::PaddingRight;
  340. case PropertyID::InsetBlockStart:
  341. return PropertyID::Top;
  342. case PropertyID::InsetBlockEnd:
  343. return PropertyID::Bottom;
  344. case PropertyID::InsetInlineStart:
  345. return PropertyID::Left;
  346. case PropertyID::InsetInlineEnd:
  347. return PropertyID::Right;
  348. case PropertyID::WebkitAppearance:
  349. return PropertyID::Appearance;
  350. default:
  351. return {};
  352. }
  353. };
  354. struct StartAndEndPropertyIDs {
  355. PropertyID start;
  356. PropertyID end;
  357. };
  358. auto map_logical_property_to_real_properties = [](PropertyID property_id) -> Optional<StartAndEndPropertyIDs> {
  359. // FIXME: Honor writing-mode, direction and text-orientation.
  360. switch (property_id) {
  361. case PropertyID::MarginBlock:
  362. return StartAndEndPropertyIDs { PropertyID::MarginTop, PropertyID::MarginBottom };
  363. case PropertyID::MarginInline:
  364. return StartAndEndPropertyIDs { PropertyID::MarginLeft, PropertyID::MarginRight };
  365. case PropertyID::PaddingBlock:
  366. return StartAndEndPropertyIDs { PropertyID::PaddingTop, PropertyID::PaddingBottom };
  367. case PropertyID::PaddingInline:
  368. return StartAndEndPropertyIDs { PropertyID::PaddingLeft, PropertyID::PaddingRight };
  369. case PropertyID::InsetBlock:
  370. return StartAndEndPropertyIDs { PropertyID::Top, PropertyID::Bottom };
  371. case PropertyID::InsetInline:
  372. return StartAndEndPropertyIDs { PropertyID::Left, PropertyID::Right };
  373. default:
  374. return {};
  375. }
  376. };
  377. if (auto real_property_id = map_logical_property_to_real_property(property_id); real_property_id.has_value()) {
  378. for_each_property_expanding_shorthands(real_property_id.value(), value, set_longhand_property);
  379. return;
  380. }
  381. if (auto real_property_ids = map_logical_property_to_real_properties(property_id); real_property_ids.has_value()) {
  382. if (value.is_value_list() && value.as_value_list().size() == 2) {
  383. auto const& start = value.as_value_list().values()[0];
  384. auto const& end = value.as_value_list().values()[1];
  385. for_each_property_expanding_shorthands(real_property_ids->start, start, set_longhand_property);
  386. for_each_property_expanding_shorthands(real_property_ids->end, end, set_longhand_property);
  387. return;
  388. }
  389. for_each_property_expanding_shorthands(real_property_ids->start, value, set_longhand_property);
  390. for_each_property_expanding_shorthands(real_property_ids->end, value, set_longhand_property);
  391. return;
  392. }
  393. if (value.is_shorthand()) {
  394. auto& shorthand_value = value.as_shorthand();
  395. auto& properties = shorthand_value.sub_properties();
  396. auto& values = shorthand_value.values();
  397. for (size_t i = 0; i < properties.size(); ++i)
  398. for_each_property_expanding_shorthands(properties[i], values[i], set_longhand_property);
  399. return;
  400. }
  401. auto assign_edge_values = [&](PropertyID top_property, PropertyID right_property, PropertyID bottom_property, PropertyID left_property, auto const& values) {
  402. if (values.size() == 4) {
  403. set_longhand_property(top_property, values[0]);
  404. set_longhand_property(right_property, values[1]);
  405. set_longhand_property(bottom_property, values[2]);
  406. set_longhand_property(left_property, values[3]);
  407. } else if (values.size() == 3) {
  408. set_longhand_property(top_property, values[0]);
  409. set_longhand_property(right_property, values[1]);
  410. set_longhand_property(bottom_property, values[2]);
  411. set_longhand_property(left_property, values[1]);
  412. } else if (values.size() == 2) {
  413. set_longhand_property(top_property, values[0]);
  414. set_longhand_property(right_property, values[1]);
  415. set_longhand_property(bottom_property, values[0]);
  416. set_longhand_property(left_property, values[1]);
  417. } else if (values.size() == 1) {
  418. set_longhand_property(top_property, values[0]);
  419. set_longhand_property(right_property, values[0]);
  420. set_longhand_property(bottom_property, values[0]);
  421. set_longhand_property(left_property, values[0]);
  422. }
  423. };
  424. if (property_id == CSS::PropertyID::Border) {
  425. for_each_property_expanding_shorthands(CSS::PropertyID::BorderTop, value, set_longhand_property);
  426. for_each_property_expanding_shorthands(CSS::PropertyID::BorderRight, value, set_longhand_property);
  427. for_each_property_expanding_shorthands(CSS::PropertyID::BorderBottom, value, set_longhand_property);
  428. for_each_property_expanding_shorthands(CSS::PropertyID::BorderLeft, value, set_longhand_property);
  429. // FIXME: Also reset border-image, in line with the spec: https://www.w3.org/TR/css-backgrounds-3/#border-shorthands
  430. return;
  431. }
  432. if (property_id == CSS::PropertyID::BorderStyle) {
  433. if (value.is_value_list()) {
  434. auto const& values_list = value.as_value_list();
  435. assign_edge_values(PropertyID::BorderTopStyle, PropertyID::BorderRightStyle, PropertyID::BorderBottomStyle, PropertyID::BorderLeftStyle, values_list.values());
  436. return;
  437. }
  438. set_longhand_property(CSS::PropertyID::BorderTopStyle, value);
  439. set_longhand_property(CSS::PropertyID::BorderRightStyle, value);
  440. set_longhand_property(CSS::PropertyID::BorderBottomStyle, value);
  441. set_longhand_property(CSS::PropertyID::BorderLeftStyle, value);
  442. return;
  443. }
  444. if (property_id == CSS::PropertyID::BorderWidth) {
  445. if (value.is_value_list()) {
  446. auto const& values_list = value.as_value_list();
  447. assign_edge_values(PropertyID::BorderTopWidth, PropertyID::BorderRightWidth, PropertyID::BorderBottomWidth, PropertyID::BorderLeftWidth, values_list.values());
  448. return;
  449. }
  450. set_longhand_property(CSS::PropertyID::BorderTopWidth, value);
  451. set_longhand_property(CSS::PropertyID::BorderRightWidth, value);
  452. set_longhand_property(CSS::PropertyID::BorderBottomWidth, value);
  453. set_longhand_property(CSS::PropertyID::BorderLeftWidth, value);
  454. return;
  455. }
  456. if (property_id == CSS::PropertyID::BorderColor) {
  457. if (value.is_value_list()) {
  458. auto const& values_list = value.as_value_list();
  459. assign_edge_values(PropertyID::BorderTopColor, PropertyID::BorderRightColor, PropertyID::BorderBottomColor, PropertyID::BorderLeftColor, values_list.values());
  460. return;
  461. }
  462. set_longhand_property(CSS::PropertyID::BorderTopColor, value);
  463. set_longhand_property(CSS::PropertyID::BorderRightColor, value);
  464. set_longhand_property(CSS::PropertyID::BorderBottomColor, value);
  465. set_longhand_property(CSS::PropertyID::BorderLeftColor, value);
  466. return;
  467. }
  468. if (property_id == CSS::PropertyID::BackgroundPosition) {
  469. if (value.is_position()) {
  470. auto const& position = value.as_position();
  471. set_longhand_property(CSS::PropertyID::BackgroundPositionX, position.edge_x());
  472. set_longhand_property(CSS::PropertyID::BackgroundPositionY, position.edge_y());
  473. } else if (value.is_value_list()) {
  474. // Expand background-position layer list into separate lists for x and y positions:
  475. auto const& values_list = value.as_value_list();
  476. StyleValueVector x_positions {};
  477. StyleValueVector y_positions {};
  478. x_positions.ensure_capacity(values_list.size());
  479. y_positions.ensure_capacity(values_list.size());
  480. for (auto& layer : values_list.values()) {
  481. if (layer->is_position()) {
  482. auto const& position = layer->as_position();
  483. x_positions.unchecked_append(position.edge_x());
  484. y_positions.unchecked_append(position.edge_y());
  485. } else {
  486. x_positions.unchecked_append(layer);
  487. y_positions.unchecked_append(layer);
  488. }
  489. }
  490. set_longhand_property(CSS::PropertyID::BackgroundPositionX, StyleValueList::create(move(x_positions), values_list.separator()));
  491. set_longhand_property(CSS::PropertyID::BackgroundPositionY, StyleValueList::create(move(y_positions), values_list.separator()));
  492. } else {
  493. set_longhand_property(CSS::PropertyID::BackgroundPositionX, value);
  494. set_longhand_property(CSS::PropertyID::BackgroundPositionY, value);
  495. }
  496. return;
  497. }
  498. if (property_id == CSS::PropertyID::Inset) {
  499. if (value.is_value_list()) {
  500. auto const& values_list = value.as_value_list();
  501. assign_edge_values(PropertyID::Top, PropertyID::Right, PropertyID::Bottom, PropertyID::Left, values_list.values());
  502. return;
  503. }
  504. set_longhand_property(CSS::PropertyID::Top, value);
  505. set_longhand_property(CSS::PropertyID::Right, value);
  506. set_longhand_property(CSS::PropertyID::Bottom, value);
  507. set_longhand_property(CSS::PropertyID::Left, value);
  508. return;
  509. }
  510. if (property_id == CSS::PropertyID::Margin) {
  511. if (value.is_value_list()) {
  512. auto const& values_list = value.as_value_list();
  513. assign_edge_values(PropertyID::MarginTop, PropertyID::MarginRight, PropertyID::MarginBottom, PropertyID::MarginLeft, values_list.values());
  514. return;
  515. }
  516. set_longhand_property(CSS::PropertyID::MarginTop, value);
  517. set_longhand_property(CSS::PropertyID::MarginRight, value);
  518. set_longhand_property(CSS::PropertyID::MarginBottom, value);
  519. set_longhand_property(CSS::PropertyID::MarginLeft, value);
  520. return;
  521. }
  522. if (property_id == CSS::PropertyID::Padding) {
  523. if (value.is_value_list()) {
  524. auto const& values_list = value.as_value_list();
  525. assign_edge_values(PropertyID::PaddingTop, PropertyID::PaddingRight, PropertyID::PaddingBottom, PropertyID::PaddingLeft, values_list.values());
  526. return;
  527. }
  528. set_longhand_property(CSS::PropertyID::PaddingTop, value);
  529. set_longhand_property(CSS::PropertyID::PaddingRight, value);
  530. set_longhand_property(CSS::PropertyID::PaddingBottom, value);
  531. set_longhand_property(CSS::PropertyID::PaddingLeft, value);
  532. return;
  533. }
  534. if (property_id == CSS::PropertyID::Gap || property_id == CSS::PropertyID::GridGap) {
  535. if (value.is_value_list()) {
  536. auto const& values_list = value.as_value_list();
  537. set_longhand_property(CSS::PropertyID::RowGap, values_list.values()[0]);
  538. set_longhand_property(CSS::PropertyID::ColumnGap, values_list.values()[1]);
  539. return;
  540. }
  541. set_longhand_property(CSS::PropertyID::RowGap, value);
  542. set_longhand_property(CSS::PropertyID::ColumnGap, value);
  543. return;
  544. }
  545. if (property_id == CSS::PropertyID::RowGap || property_id == CSS::PropertyID::GridRowGap) {
  546. set_longhand_property(CSS::PropertyID::RowGap, value);
  547. return;
  548. }
  549. if (property_id == CSS::PropertyID::ColumnGap || property_id == CSS::PropertyID::GridColumnGap) {
  550. set_longhand_property(CSS::PropertyID::ColumnGap, value);
  551. return;
  552. }
  553. if (property_id == CSS::PropertyID::MaxInlineSize || property_id == CSS::PropertyID::MinInlineSize) {
  554. // FIXME: Use writing-mode to determine if we should set width or height.
  555. bool is_horizontal = true;
  556. if (is_horizontal) {
  557. if (property_id == CSS::PropertyID::MaxInlineSize) {
  558. set_longhand_property(CSS::PropertyID::MaxWidth, value);
  559. } else {
  560. set_longhand_property(CSS::PropertyID::MinWidth, value);
  561. }
  562. } else {
  563. if (property_id == CSS::PropertyID::MaxInlineSize) {
  564. set_longhand_property(CSS::PropertyID::MaxHeight, value);
  565. } else {
  566. set_longhand_property(CSS::PropertyID::MinHeight, value);
  567. }
  568. }
  569. return;
  570. }
  571. if (property_is_shorthand(property_id)) {
  572. // ShorthandStyleValue was handled already.
  573. // That means if we got here, that `value` must be a CSS-wide keyword, which we should apply to our longhand properties.
  574. // We don't directly call `set_longhand_property()` because the longhands might have longhands of their own.
  575. // (eg `grid` -> `grid-template` -> `grid-template-areas` & `grid-template-rows` & `grid-template-columns`)
  576. VERIFY(value.is_css_wide_keyword());
  577. for (auto longhand : longhands_for_shorthand(property_id))
  578. for_each_property_expanding_shorthands(longhand, value, set_longhand_property);
  579. return;
  580. }
  581. set_longhand_property(property_id, value);
  582. }
  583. void StyleComputer::set_property_expanding_shorthands(StyleProperties& style, CSS::PropertyID property_id, StyleValue const& value, CSS::CSSStyleDeclaration const* declaration, StyleProperties::PropertyValues const& properties_for_revert)
  584. {
  585. for_each_property_expanding_shorthands(property_id, value, [&](PropertyID shorthand_id, StyleValue const& shorthand_value) {
  586. if (shorthand_value.is_revert()) {
  587. auto& property_in_previous_cascade_origin = properties_for_revert[to_underlying(shorthand_id)];
  588. if (property_in_previous_cascade_origin.has_value())
  589. style.set_property(shorthand_id, property_in_previous_cascade_origin->style, property_in_previous_cascade_origin->declaration);
  590. } else {
  591. style.set_property(shorthand_id, shorthand_value, declaration);
  592. }
  593. });
  594. }
  595. void StyleComputer::set_all_properties(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, StyleProperties& style, StyleValue const& value, DOM::Document& document, CSS::CSSStyleDeclaration const* declaration, StyleProperties::PropertyValues const& properties_for_revert) const
  596. {
  597. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  598. auto property_id = (CSS::PropertyID)i;
  599. if (value.is_revert()) {
  600. style.m_property_values[to_underlying(property_id)] = properties_for_revert[to_underlying(property_id)];
  601. continue;
  602. }
  603. if (value.is_unset()) {
  604. if (is_inherited_property(property_id))
  605. style.m_property_values[to_underlying(property_id)] = { { get_inherit_value(document.realm(), property_id, &element, pseudo_element), nullptr } };
  606. else
  607. style.m_property_values[to_underlying(property_id)] = { { property_initial_value(document.realm(), property_id), nullptr } };
  608. continue;
  609. }
  610. NonnullRefPtr<StyleValue> property_value = value;
  611. if (property_value->is_unresolved())
  612. property_value = Parser::Parser::resolve_unresolved_style_value({}, Parser::ParsingContext { document }, element, pseudo_element, property_id, property_value->as_unresolved());
  613. if (!property_value->is_unresolved())
  614. set_property_expanding_shorthands(style, property_id, property_value, declaration, properties_for_revert);
  615. set_property_expanding_shorthands(style, property_id, value, declaration, properties_for_revert);
  616. }
  617. }
  618. void StyleComputer::cascade_declarations(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, Vector<MatchingRule> const& matching_rules, CascadeOrigin cascade_origin, Important important) const
  619. {
  620. auto properties_for_revert = style.properties();
  621. for (auto const& match : matching_rules) {
  622. for (auto const& property : verify_cast<PropertyOwningCSSStyleDeclaration>(match.rule->declaration()).properties()) {
  623. if (important != property.important)
  624. continue;
  625. if (property.property_id == CSS::PropertyID::All) {
  626. set_all_properties(element, pseudo_element, style, property.value, m_document, &match.rule->declaration(), properties_for_revert);
  627. continue;
  628. }
  629. auto property_value = property.value;
  630. if (property.value->is_unresolved())
  631. property_value = Parser::Parser::resolve_unresolved_style_value({}, Parser::ParsingContext { document() }, element, pseudo_element, property.property_id, property.value->as_unresolved());
  632. if (!property_value->is_unresolved())
  633. set_property_expanding_shorthands(style, property.property_id, property_value, &match.rule->declaration(), properties_for_revert);
  634. }
  635. }
  636. if (cascade_origin == CascadeOrigin::Author && !pseudo_element.has_value()) {
  637. if (auto const* inline_style = verify_cast<ElementInlineCSSStyleDeclaration>(element.inline_style())) {
  638. for (auto const& property : inline_style->properties()) {
  639. if (important != property.important)
  640. continue;
  641. if (property.property_id == CSS::PropertyID::All) {
  642. set_all_properties(element, pseudo_element, style, property.value, m_document, inline_style, properties_for_revert);
  643. continue;
  644. }
  645. auto property_value = property.value;
  646. if (property.value->is_unresolved())
  647. property_value = Parser::Parser::resolve_unresolved_style_value({}, Parser::ParsingContext { document() }, element, pseudo_element, property.property_id, property.value->as_unresolved());
  648. if (!property_value->is_unresolved())
  649. set_property_expanding_shorthands(style, property.property_id, property_value, inline_style, properties_for_revert);
  650. }
  651. }
  652. }
  653. }
  654. static ErrorOr<void> cascade_custom_properties(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, Vector<MatchingRule> const& matching_rules)
  655. {
  656. size_t needed_capacity = 0;
  657. for (auto const& matching_rule : matching_rules)
  658. needed_capacity += verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties().size();
  659. if (!pseudo_element.has_value()) {
  660. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style()))
  661. needed_capacity += inline_style->custom_properties().size();
  662. }
  663. HashMap<FlyString, StyleProperty> custom_properties;
  664. TRY(custom_properties.try_ensure_capacity(needed_capacity));
  665. for (auto const& matching_rule : matching_rules) {
  666. for (auto const& it : verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties())
  667. custom_properties.set(it.key, it.value);
  668. }
  669. if (!pseudo_element.has_value()) {
  670. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style())) {
  671. for (auto const& it : inline_style->custom_properties())
  672. custom_properties.set(it.key, it.value);
  673. }
  674. }
  675. element.set_custom_properties(pseudo_element, move(custom_properties));
  676. return {};
  677. }
  678. static ErrorOr<NonnullRefPtr<StyleValue const>> interpolate_value(StyleValue const& from, StyleValue const& to, float delta)
  679. {
  680. auto interpolate_raw = [delta = static_cast<double>(delta)](auto from, auto to) {
  681. return static_cast<RemoveCVReference<decltype(from)>>(static_cast<double>(from) + static_cast<double>(to - from) * delta);
  682. };
  683. switch (from.type()) {
  684. case StyleValue::Type::Angle:
  685. return AngleStyleValue::create(Angle::make_degrees(interpolate_raw(from.as_angle().angle().to_degrees(), to.as_angle().angle().to_degrees())));
  686. case StyleValue::Type::Color: {
  687. auto from_color = from.as_color().color();
  688. auto to_color = to.as_color().color();
  689. auto from_oklab = from_color.to_oklab();
  690. auto to_oklab = to_color.to_oklab();
  691. auto color = Color::from_oklab(
  692. interpolate_raw(from_oklab.L, to_oklab.L),
  693. interpolate_raw(from_oklab.a, to_oklab.a),
  694. interpolate_raw(from_oklab.b, to_oklab.b));
  695. color.set_alpha(interpolate_raw(from_color.alpha(), to_color.alpha()));
  696. return ColorStyleValue::create(color);
  697. }
  698. case StyleValue::Type::Integer:
  699. return IntegerStyleValue::create(interpolate_raw(from.as_integer().integer(), to.as_integer().integer()));
  700. case StyleValue::Type::Length: {
  701. auto& from_length = from.as_length().length();
  702. auto& to_length = to.as_length().length();
  703. return LengthStyleValue::create(Length(interpolate_raw(from_length.raw_value(), to_length.raw_value()), from_length.type()));
  704. }
  705. case StyleValue::Type::Number:
  706. return NumberStyleValue::create(interpolate_raw(from.as_number().number(), to.as_number().number()));
  707. case StyleValue::Type::Percentage:
  708. return PercentageStyleValue::create(Percentage(interpolate_raw(from.as_percentage().percentage().value(), to.as_percentage().percentage().value())));
  709. case StyleValue::Type::Position: {
  710. // https://www.w3.org/TR/css-values-4/#combine-positions
  711. // FIXME: Interpolation of <position> is defined as the independent interpolation of each component (x, y) normalized as an offset from the top left corner as a <length-percentage>.
  712. auto& from_position = from.as_position();
  713. auto& to_position = to.as_position();
  714. return PositionStyleValue::create(
  715. TRY(interpolate_value(from_position.edge_x(), to_position.edge_x(), delta))->as_edge(),
  716. TRY(interpolate_value(from_position.edge_y(), to_position.edge_y(), delta))->as_edge());
  717. }
  718. case StyleValue::Type::Rect: {
  719. auto from_rect = from.as_rect().rect();
  720. auto to_rect = to.as_rect().rect();
  721. return RectStyleValue::create({
  722. Length(interpolate_raw(from_rect.top_edge.raw_value(), to_rect.top_edge.raw_value()), from_rect.top_edge.type()),
  723. Length(interpolate_raw(from_rect.right_edge.raw_value(), to_rect.right_edge.raw_value()), from_rect.right_edge.type()),
  724. Length(interpolate_raw(from_rect.bottom_edge.raw_value(), to_rect.bottom_edge.raw_value()), from_rect.bottom_edge.type()),
  725. Length(interpolate_raw(from_rect.left_edge.raw_value(), to_rect.left_edge.raw_value()), from_rect.left_edge.type()),
  726. });
  727. }
  728. case StyleValue::Type::Transformation: {
  729. auto& from_transform = from.as_transformation();
  730. auto& to_transform = to.as_transformation();
  731. if (from_transform.transform_function() != to_transform.transform_function())
  732. return from;
  733. auto from_input_values = from_transform.values();
  734. auto to_input_values = to_transform.values();
  735. if (from_input_values.size() != to_input_values.size())
  736. return from;
  737. StyleValueVector interpolated_values;
  738. interpolated_values.ensure_capacity(from_input_values.size());
  739. for (size_t i = 0; i < from_input_values.size(); ++i)
  740. interpolated_values.append(TRY(interpolate_value(*from_input_values[i], *to_input_values[i], delta)));
  741. return TransformationStyleValue::create(from_transform.transform_function(), move(interpolated_values));
  742. }
  743. case StyleValue::Type::ValueList: {
  744. auto& from_list = from.as_value_list();
  745. auto& to_list = to.as_value_list();
  746. if (from_list.size() != to_list.size())
  747. return from;
  748. StyleValueVector interpolated_values;
  749. interpolated_values.ensure_capacity(from_list.size());
  750. for (size_t i = 0; i < from_list.size(); ++i)
  751. interpolated_values.append(TRY(interpolate_value(from_list.values()[i], to_list.values()[i], delta)));
  752. return StyleValueList::create(move(interpolated_values), from_list.separator());
  753. }
  754. default:
  755. return from;
  756. }
  757. }
  758. static ErrorOr<ValueComparingNonnullRefPtr<StyleValue const>> interpolate_property(PropertyID property_id, StyleValue const& from, StyleValue const& to, float delta)
  759. {
  760. if (from.type() != to.type()) {
  761. if (delta > 0.999f)
  762. return to;
  763. return from;
  764. }
  765. auto animation_type = animation_type_from_longhand_property(property_id);
  766. switch (animation_type) {
  767. case AnimationType::ByComputedValue:
  768. return interpolate_value(from, to, delta);
  769. case AnimationType::None:
  770. return to;
  771. // FIXME: Handle all custom animatable properties
  772. case AnimationType::Custom:
  773. // FIXME: Handle repeatable-list animatable properties
  774. case AnimationType::RepeatableList:
  775. case AnimationType::Discrete:
  776. default:
  777. return delta >= 0.5f ? to : from;
  778. }
  779. }
  780. ErrorOr<void> StyleComputer::collect_animation_into(JS::NonnullGCPtr<Animations::KeyframeEffect> effect, StyleProperties& style_properties) const
  781. {
  782. auto animation = effect->associated_animation();
  783. if (!animation)
  784. return {};
  785. auto output_progress = effect->transformed_progress();
  786. if (!output_progress.has_value())
  787. return {};
  788. if (!effect->key_frame_set())
  789. return {};
  790. auto& keyframes = effect->key_frame_set()->keyframes_by_key;
  791. auto key = static_cast<u64>(output_progress.value() * 100.0 * Animations::KeyframeEffect::AnimationKeyFrameKeyScaleFactor);
  792. auto matching_keyframe_it = keyframes.find_largest_not_above_iterator(key);
  793. if (matching_keyframe_it.is_end()) {
  794. if constexpr (LIBWEB_CSS_ANIMATION_DEBUG) {
  795. dbgln(" Did not find any start keyframe for the current state ({}) :(", key);
  796. dbgln(" (have {} keyframes)", keyframes.size());
  797. for (auto it = keyframes.begin(); it != keyframes.end(); ++it)
  798. dbgln(" - {}", it.key());
  799. }
  800. return {};
  801. }
  802. auto keyframe_start = matching_keyframe_it.key();
  803. auto keyframe_values = *matching_keyframe_it;
  804. auto initial_keyframe_it = matching_keyframe_it;
  805. auto keyframe_end_it = ++matching_keyframe_it;
  806. if (keyframe_end_it.is_end())
  807. keyframe_end_it = initial_keyframe_it;
  808. auto keyframe_end = keyframe_end_it.key();
  809. auto keyframe_end_values = *keyframe_end_it;
  810. auto progress_in_keyframe = [&] {
  811. if (keyframe_start == keyframe_end)
  812. return 0.f;
  813. return static_cast<float>(key - keyframe_start) / static_cast<float>(keyframe_end - keyframe_start);
  814. }();
  815. if constexpr (LIBWEB_CSS_ANIMATION_DEBUG) {
  816. auto valid_properties = keyframe_values.resolved_properties.size();
  817. dbgln("Animation {} contains {} properties to interpolate, progress = {}%", animation->id(), valid_properties, progress_in_keyframe * 100);
  818. }
  819. for (auto const& it : keyframe_values.resolved_properties) {
  820. auto resolve_property = [&](auto& property) {
  821. return property.visit(
  822. [&](Animations::KeyframeEffect::KeyFrameSet::UseInitial) -> RefPtr<StyleValue const> {
  823. return style_properties.maybe_null_property(it.key);
  824. },
  825. [&](RefPtr<StyleValue const> value) { return value; });
  826. };
  827. auto resolved_start_property = resolve_property(it.value);
  828. auto const& end_property = keyframe_end_values.resolved_properties.get(it.key);
  829. if (!end_property.has_value()) {
  830. if (resolved_start_property) {
  831. style_properties.set_property(it.key, *resolved_start_property);
  832. dbgln_if(LIBWEB_CSS_ANIMATION_DEBUG, "No end property for property {}, using {}", string_from_property_id(it.key), resolved_start_property->to_string());
  833. }
  834. continue;
  835. }
  836. auto resolved_end_property = resolve_property(end_property.value());
  837. if (resolved_end_property && !resolved_start_property)
  838. resolved_start_property = CSS::property_initial_value(document().realm(), it.key);
  839. if (!resolved_start_property || !resolved_end_property)
  840. continue;
  841. auto start = resolved_start_property.release_nonnull();
  842. auto end = resolved_end_property.release_nonnull();
  843. auto next_value = TRY(interpolate_property(it.key, *start, *end, progress_in_keyframe));
  844. dbgln_if(LIBWEB_CSS_ANIMATION_DEBUG, "Interpolated value for property {} at {}: {} -> {} = {}", string_from_property_id(it.key), progress_in_keyframe, start->to_string(), end->to_string(), next_value->to_string());
  845. style_properties.set_property(it.key, next_value);
  846. }
  847. return {};
  848. }
  849. static void apply_animation_properties(DOM::Document& document, StyleProperties& style, Animations::Animation& animation)
  850. {
  851. auto& effect = verify_cast<Animations::KeyframeEffect>(*animation.effect());
  852. Optional<CSS::Time> duration;
  853. if (auto duration_value = style.maybe_null_property(PropertyID::AnimationDuration); duration_value) {
  854. if (duration_value->is_time()) {
  855. duration = duration_value->as_time().time();
  856. } else if (duration_value->is_identifier() && duration_value->as_identifier().id() == ValueID::Auto) {
  857. // We use empty optional to represent "auto".
  858. duration = {};
  859. }
  860. }
  861. CSS::Time delay { 0, CSS::Time::Type::S };
  862. if (auto delay_value = style.maybe_null_property(PropertyID::AnimationDelay); delay_value && delay_value->is_time())
  863. delay = delay_value->as_time().time();
  864. double iteration_count = 1.0;
  865. if (auto iteration_count_value = style.maybe_null_property(PropertyID::AnimationIterationCount); iteration_count_value) {
  866. if (iteration_count_value->is_identifier() && iteration_count_value->to_identifier() == ValueID::Infinite)
  867. iteration_count = HUGE_VAL;
  868. else if (iteration_count_value->is_number())
  869. iteration_count = iteration_count_value->as_number().number();
  870. }
  871. CSS::AnimationFillMode fill_mode { CSS::AnimationFillMode::None };
  872. if (auto fill_mode_property = style.maybe_null_property(PropertyID::AnimationFillMode); fill_mode_property && fill_mode_property->is_identifier()) {
  873. if (auto fill_mode_value = value_id_to_animation_fill_mode(fill_mode_property->to_identifier()); fill_mode_value.has_value())
  874. fill_mode = *fill_mode_value;
  875. }
  876. CSS::AnimationDirection direction { CSS::AnimationDirection::Normal };
  877. if (auto direction_property = style.maybe_null_property(PropertyID::AnimationDirection); direction_property && direction_property->is_identifier()) {
  878. if (auto direction_value = value_id_to_animation_direction(direction_property->to_identifier()); direction_value.has_value())
  879. direction = *direction_value;
  880. }
  881. CSS::AnimationPlayState play_state { CSS::AnimationPlayState::Running };
  882. if (auto play_state_property = style.maybe_null_property(PropertyID::AnimationPlayState); play_state_property && play_state_property->is_identifier()) {
  883. if (auto play_state_value = value_id_to_animation_play_state(play_state_property->to_identifier()); play_state_value.has_value())
  884. play_state = *play_state_value;
  885. }
  886. Animations::TimingFunction timing_function = Animations::ease_timing_function;
  887. if (auto timing_property = style.maybe_null_property(PropertyID::AnimationTimingFunction); timing_property && timing_property->is_easing())
  888. timing_function = Animations::TimingFunction::from_easing_style_value(timing_property->as_easing());
  889. auto iteration_duration = duration.has_value()
  890. ? Variant<double, String> { duration.release_value().to_milliseconds() }
  891. : "auto"_string;
  892. effect.set_iteration_duration(iteration_duration);
  893. effect.set_start_delay(delay.to_milliseconds());
  894. effect.set_iteration_count(iteration_count);
  895. effect.set_timing_function(move(timing_function));
  896. effect.set_fill_mode(Animations::css_fill_mode_to_bindings_fill_mode(fill_mode));
  897. effect.set_playback_direction(Animations::css_animation_direction_to_bindings_playback_direction(direction));
  898. HTML::TemporaryExecutionContext context(document.relevant_settings_object());
  899. if (play_state == CSS::AnimationPlayState::Running && animation.play_state() != Bindings::AnimationPlayState::Running) {
  900. animation.play().release_value_but_fixme_should_propagate_errors();
  901. } else if (play_state == CSS::AnimationPlayState::Paused && animation.play_state() != Bindings::AnimationPlayState::Paused) {
  902. animation.pause().release_value_but_fixme_should_propagate_errors();
  903. }
  904. }
  905. // https://www.w3.org/TR/css-cascade/#cascading
  906. ErrorOr<void> StyleComputer::compute_cascaded_values(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, bool& did_match_any_pseudo_element_rules, ComputeStyleMode mode) const
  907. {
  908. // First, we collect all the CSS rules whose selectors match `element`:
  909. MatchingRuleSet matching_rule_set;
  910. matching_rule_set.user_agent_rules = collect_matching_rules(element, CascadeOrigin::UserAgent, pseudo_element);
  911. sort_matching_rules(matching_rule_set.user_agent_rules);
  912. matching_rule_set.user_rules = collect_matching_rules(element, CascadeOrigin::User, pseudo_element);
  913. sort_matching_rules(matching_rule_set.user_rules);
  914. matching_rule_set.author_rules = collect_matching_rules(element, CascadeOrigin::Author, pseudo_element);
  915. sort_matching_rules(matching_rule_set.author_rules);
  916. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded) {
  917. VERIFY(pseudo_element.has_value());
  918. if (matching_rule_set.author_rules.is_empty() && matching_rule_set.user_rules.is_empty() && matching_rule_set.user_agent_rules.is_empty()) {
  919. did_match_any_pseudo_element_rules = false;
  920. return {};
  921. }
  922. did_match_any_pseudo_element_rules = true;
  923. }
  924. // Then we resolve all the CSS custom properties ("variables") for this element:
  925. TRY(cascade_custom_properties(element, pseudo_element, matching_rule_set.author_rules));
  926. // Then we apply the declarations from the matched rules in cascade order:
  927. // Normal user agent declarations
  928. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::No);
  929. // Normal user declarations
  930. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_rules, CascadeOrigin::User, Important::No);
  931. // Author presentational hints (NOTE: The spec doesn't say exactly how to prioritize these.)
  932. if (!pseudo_element.has_value()) {
  933. element.apply_presentational_hints(style);
  934. // SVG presentation attributes are parsed as CSS values, so we need to handle potential custom properties here.
  935. if (element.is_svg_element()) {
  936. // FIXME: This is not very efficient, we should only resolve the custom properties that are actually used.
  937. for (auto i = to_underlying(CSS::first_property_id); i <= to_underlying(CSS::last_property_id); ++i) {
  938. auto property_id = (CSS::PropertyID)i;
  939. auto& property = style.m_property_values[i];
  940. if (property.has_value() && property->style->is_unresolved())
  941. property->style = Parser::Parser::resolve_unresolved_style_value({}, Parser::ParsingContext { document() }, element, pseudo_element, property_id, property->style->as_unresolved());
  942. }
  943. }
  944. }
  945. // Normal author declarations
  946. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::No);
  947. // Animation declarations [css-animations-2]
  948. auto animation_name = [&]() -> Optional<String> {
  949. auto animation_name = style.maybe_null_property(PropertyID::AnimationName);
  950. if (animation_name.is_null())
  951. return OptionalNone {};
  952. if (animation_name->is_string())
  953. return animation_name->as_string().string_value();
  954. return animation_name->to_string();
  955. }();
  956. if (animation_name.has_value()) {
  957. if (auto source_declaration = style.property_source_declaration(PropertyID::AnimationName); source_declaration) {
  958. auto& realm = element.realm();
  959. if (source_declaration != element.cached_animation_name_source()) {
  960. // This animation name is new, so we need to create a new animation for it.
  961. if (auto existing_animation = element.cached_animation_name_animation())
  962. existing_animation->cancel();
  963. element.set_cached_animation_name_source(source_declaration);
  964. auto effect = Animations::KeyframeEffect::create(realm);
  965. auto animation = CSSAnimation::create(realm);
  966. animation->set_id(animation_name.release_value());
  967. animation->set_timeline(m_document->timeline());
  968. animation->set_owning_element(element);
  969. animation->set_effect(effect);
  970. apply_animation_properties(m_document, style, animation);
  971. if (pseudo_element.has_value())
  972. effect->set_pseudo_element(Selector::PseudoElement { pseudo_element.value() });
  973. auto const& rule_cache = rule_cache_for_cascade_origin(CascadeOrigin::Author);
  974. if (auto keyframe_set = rule_cache.rules_by_animation_keyframes.get(animation->id()); keyframe_set.has_value())
  975. effect->set_key_frame_set(keyframe_set.value());
  976. element.associate_with_effect(effect);
  977. element.set_cached_animation_name_animation(animation);
  978. } else {
  979. // The animation hasn't changed, but some properties of the animation may have
  980. apply_animation_properties(m_document, style, *element.cached_animation_name_animation());
  981. }
  982. }
  983. } else {
  984. // If the element had an existing animation, cancel it
  985. if (auto existing_animation = element.cached_animation_name_animation()) {
  986. existing_animation->cancel();
  987. element.set_cached_animation_name_animation({});
  988. element.set_cached_animation_name_source({});
  989. }
  990. }
  991. auto animations = element.get_animations({ .subtree = false });
  992. for (auto& animation : animations) {
  993. if (!animation->is_relevant())
  994. continue;
  995. if (auto effect = animation->effect(); effect && effect->is_keyframe_effect()) {
  996. auto& keyframe_effect = *static_cast<Animations::KeyframeEffect*>(effect.ptr());
  997. if (keyframe_effect.pseudo_element_type() == pseudo_element)
  998. TRY(collect_animation_into(keyframe_effect, style));
  999. }
  1000. }
  1001. // Important author declarations
  1002. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::Yes);
  1003. // Important user declarations
  1004. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_rules, CascadeOrigin::User, Important::Yes);
  1005. // Important user agent declarations
  1006. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::Yes);
  1007. // FIXME: Transition declarations [css-transitions-1]
  1008. return {};
  1009. }
  1010. DOM::Element const* element_to_inherit_style_from(DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element)
  1011. {
  1012. // Pseudo-elements treat their originating element as their parent.
  1013. DOM::Element const* parent_element = nullptr;
  1014. if (pseudo_element.has_value()) {
  1015. parent_element = element;
  1016. } else if (element) {
  1017. parent_element = element->parent_or_shadow_host_element();
  1018. }
  1019. return parent_element;
  1020. }
  1021. NonnullRefPtr<StyleValue const> get_inherit_value(JS::Realm& initial_value_context_realm, CSS::PropertyID property_id, DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element)
  1022. {
  1023. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1024. if (!parent_element || !parent_element->computed_css_values())
  1025. return property_initial_value(initial_value_context_realm, property_id);
  1026. return parent_element->computed_css_values()->property(property_id);
  1027. }
  1028. void StyleComputer::compute_defaulted_property_value(StyleProperties& style, DOM::Element const* element, CSS::PropertyID property_id, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1029. {
  1030. // FIXME: If we don't know the correct initial value for a property, we fall back to InitialStyleValue.
  1031. auto& value_slot = style.m_property_values[to_underlying(property_id)];
  1032. if (!value_slot.has_value()) {
  1033. if (is_inherited_property(property_id))
  1034. style.m_property_values[to_underlying(property_id)] = { { get_inherit_value(document().realm(), property_id, element, pseudo_element), nullptr } };
  1035. else
  1036. style.m_property_values[to_underlying(property_id)] = { { property_initial_value(document().realm(), property_id), nullptr } };
  1037. return;
  1038. }
  1039. if (value_slot->style->is_initial()) {
  1040. value_slot->style = property_initial_value(document().realm(), property_id);
  1041. return;
  1042. }
  1043. if (value_slot->style->is_inherit()) {
  1044. value_slot->style = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  1045. return;
  1046. }
  1047. // https://www.w3.org/TR/css-cascade-4/#inherit-initial
  1048. // If the cascaded value of a property is the unset keyword,
  1049. if (value_slot->style->is_unset()) {
  1050. if (is_inherited_property(property_id)) {
  1051. // then if it is an inherited property, this is treated as inherit,
  1052. value_slot->style = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  1053. } else {
  1054. // and if it is not, this is treated as initial.
  1055. value_slot->style = property_initial_value(document().realm(), property_id);
  1056. }
  1057. }
  1058. }
  1059. // https://www.w3.org/TR/css-cascade/#defaulting
  1060. void StyleComputer::compute_defaulted_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1061. {
  1062. // Walk the list of all known CSS properties and:
  1063. // - Add them to `style` if they are missing.
  1064. // - Resolve `inherit` and `initial` as needed.
  1065. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  1066. auto property_id = (CSS::PropertyID)i;
  1067. compute_defaulted_property_value(style, element, property_id, pseudo_element);
  1068. }
  1069. // https://www.w3.org/TR/css-color-4/#resolving-other-colors
  1070. // In the color property, the used value of currentcolor is the inherited value.
  1071. auto color = style.property(CSS::PropertyID::Color);
  1072. if (color->to_identifier() == CSS::ValueID::Currentcolor) {
  1073. color = get_inherit_value(document().realm(), CSS::PropertyID::Color, element, pseudo_element);
  1074. style.set_property(CSS::PropertyID::Color, color);
  1075. }
  1076. }
  1077. Length::FontMetrics StyleComputer::calculate_root_element_font_metrics(StyleProperties const& style) const
  1078. {
  1079. auto root_value = style.property(CSS::PropertyID::FontSize);
  1080. auto font_pixel_metrics = style.first_available_computed_font().pixel_metrics();
  1081. Length::FontMetrics font_metrics { m_default_font_metrics.font_size, font_pixel_metrics };
  1082. font_metrics.font_size = root_value->as_length().length().to_px(viewport_rect(), font_metrics, font_metrics);
  1083. font_metrics.line_height = style.compute_line_height(viewport_rect(), font_metrics, font_metrics);
  1084. return font_metrics;
  1085. }
  1086. RefPtr<Gfx::FontCascadeList const> StyleComputer::find_matching_font_weight_ascending(Vector<MatchingFontCandidate> const& candidates, int target_weight, float font_size_in_pt, bool inclusive)
  1087. {
  1088. using Fn = AK::Function<bool(MatchingFontCandidate const&)>;
  1089. auto pred = inclusive ? Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight >= target_weight; })
  1090. : Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight > target_weight; });
  1091. auto it = find_if(candidates.begin(), candidates.end(), pred);
  1092. for (; it != candidates.end(); ++it) {
  1093. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1094. return found_font;
  1095. }
  1096. return {};
  1097. }
  1098. RefPtr<Gfx::FontCascadeList const> StyleComputer::find_matching_font_weight_descending(Vector<MatchingFontCandidate> const& candidates, int target_weight, float font_size_in_pt, bool inclusive)
  1099. {
  1100. using Fn = AK::Function<bool(MatchingFontCandidate const&)>;
  1101. auto pred = inclusive ? Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight <= target_weight; })
  1102. : Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight < target_weight; });
  1103. auto it = find_if(candidates.rbegin(), candidates.rend(), pred);
  1104. for (; it != candidates.rend(); ++it) {
  1105. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1106. return found_font;
  1107. }
  1108. return {};
  1109. }
  1110. // Partial implementation of the font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  1111. // FIXME: This should be replaced by the full CSS font selection algorithm.
  1112. RefPtr<Gfx::FontCascadeList const> StyleComputer::font_matching_algorithm(FontFaceKey const& key, float font_size_in_pt) const
  1113. {
  1114. // If a font family match occurs, the user agent assembles the set of font faces in that family and then
  1115. // narrows the set to a single face using other font properties in the order given below.
  1116. Vector<MatchingFontCandidate> matching_family_fonts;
  1117. for (auto const& font_key_and_loader : m_loaded_fonts) {
  1118. if (font_key_and_loader.key.family_name.equals_ignoring_ascii_case(key.family_name))
  1119. matching_family_fonts.empend(font_key_and_loader.key, const_cast<FontLoaderList*>(&font_key_and_loader.value));
  1120. }
  1121. Gfx::FontDatabase::the().for_each_typeface_with_family_name(key.family_name.to_string(), [&](Gfx::Typeface const& typeface) {
  1122. matching_family_fonts.empend(
  1123. FontFaceKey {
  1124. .family_name = typeface.family(),
  1125. .weight = static_cast<int>(typeface.weight()),
  1126. .slope = typeface.slope(),
  1127. },
  1128. &typeface);
  1129. });
  1130. quick_sort(matching_family_fonts, [](auto const& a, auto const& b) {
  1131. return a.key.weight < b.key.weight;
  1132. });
  1133. // FIXME: 1. font-stretch is tried first.
  1134. // FIXME: 2. font-style is tried next.
  1135. // We don't have complete support of italic and oblique fonts, so matching on font-style can be simplified to:
  1136. // If a matching slope is found, all faces which don't have that matching slope are excluded from the matching set.
  1137. auto style_it = find_if(matching_family_fonts.begin(), matching_family_fonts.end(),
  1138. [&](auto const& matching_font_candidate) { return matching_font_candidate.key.slope == key.slope; });
  1139. if (style_it != matching_family_fonts.end()) {
  1140. matching_family_fonts.remove_all_matching([&](auto const& matching_font_candidate) {
  1141. return matching_font_candidate.key.slope != key.slope;
  1142. });
  1143. }
  1144. // 3. font-weight is matched next.
  1145. // If the desired weight is inclusively between 400 and 500, weights greater than or equal to the target weight
  1146. // are checked in ascending order until 500 is hit and checked, followed by weights less than the target weight
  1147. // in descending order, followed by weights greater than 500, until a match is found.
  1148. if (key.weight >= 400 && key.weight <= 500) {
  1149. auto it = find_if(matching_family_fonts.begin(), matching_family_fonts.end(),
  1150. [&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight >= key.weight; });
  1151. for (; it != matching_family_fonts.end() && it->key.weight <= 500; ++it) {
  1152. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1153. return found_font;
  1154. }
  1155. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1156. return found_font;
  1157. for (; it != matching_family_fonts.end(); ++it) {
  1158. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1159. return found_font;
  1160. }
  1161. }
  1162. // If the desired weight is less than 400, weights less than or equal to the desired weight are checked in descending order
  1163. // followed by weights above the desired weight in ascending order until a match is found.
  1164. if (key.weight < 400) {
  1165. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, true))
  1166. return found_font;
  1167. if (auto found_font = find_matching_font_weight_ascending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1168. return found_font;
  1169. }
  1170. // If the desired weight is greater than 500, weights greater than or equal to the desired weight are checked in ascending order
  1171. // followed by weights below the desired weight in descending order until a match is found.
  1172. if (key.weight > 500) {
  1173. if (auto found_font = find_matching_font_weight_ascending(matching_family_fonts, key.weight, font_size_in_pt, true))
  1174. return found_font;
  1175. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1176. return found_font;
  1177. }
  1178. return {};
  1179. }
  1180. RefPtr<Gfx::FontCascadeList const> StyleComputer::compute_font_for_style_values(DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, StyleValue const& font_family, StyleValue const& font_size, StyleValue const& font_style, StyleValue const& font_weight, StyleValue const& font_stretch, int math_depth) const
  1181. {
  1182. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1183. auto width = font_stretch.to_font_stretch_width();
  1184. auto weight = font_weight.to_font_weight();
  1185. bool bold = weight > Gfx::FontWeight::Regular;
  1186. // FIXME: Should be based on "user's default font size"
  1187. CSSPixels font_size_in_px = 16;
  1188. Gfx::FontPixelMetrics font_pixel_metrics;
  1189. if (parent_element && parent_element->computed_css_values())
  1190. font_pixel_metrics = parent_element->computed_css_values()->first_available_computed_font().pixel_metrics();
  1191. else
  1192. font_pixel_metrics = Platform::FontPlugin::the().default_font().pixel_metrics();
  1193. auto parent_font_size = [&]() -> CSSPixels {
  1194. if (!parent_element || !parent_element->computed_css_values())
  1195. return font_size_in_px;
  1196. auto value = parent_element->computed_css_values()->property(CSS::PropertyID::FontSize);
  1197. if (value->is_length()) {
  1198. auto length = value->as_length().length();
  1199. if (length.is_absolute() || length.is_relative()) {
  1200. Length::FontMetrics font_metrics { font_size_in_px, font_pixel_metrics };
  1201. return length.to_px(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1202. }
  1203. }
  1204. return font_size_in_px;
  1205. };
  1206. Length::FontMetrics font_metrics { parent_font_size(), font_pixel_metrics };
  1207. if (font_size.is_identifier()) {
  1208. // https://w3c.github.io/csswg-drafts/css-fonts/#absolute-size-mapping
  1209. auto get_absolute_size_mapping = [](Web::CSS::ValueID identifier) -> CSSPixelFraction {
  1210. switch (identifier) {
  1211. case CSS::ValueID::XxSmall:
  1212. return CSSPixels(3) / 5;
  1213. case CSS::ValueID::XSmall:
  1214. return CSSPixels(3) / 4;
  1215. case CSS::ValueID::Small:
  1216. return CSSPixels(8) / 9;
  1217. case CSS::ValueID::Medium:
  1218. return 1;
  1219. case CSS::ValueID::Large:
  1220. return CSSPixels(6) / 5;
  1221. case CSS::ValueID::XLarge:
  1222. return CSSPixels(3) / 2;
  1223. case CSS::ValueID::XxLarge:
  1224. return 2;
  1225. case CSS::ValueID::XxxLarge:
  1226. return 3;
  1227. case CSS::ValueID::Smaller:
  1228. return CSSPixels(4) / 5;
  1229. case CSS::ValueID::Larger:
  1230. return CSSPixels(5) / 4;
  1231. default:
  1232. return 1;
  1233. }
  1234. };
  1235. auto const identifier = static_cast<IdentifierStyleValue const&>(font_size).id();
  1236. if (identifier == ValueID::Math) {
  1237. auto math_scaling_factor = [&]() {
  1238. // https://w3c.github.io/mathml-core/#the-math-script-level-property
  1239. // If the specified value font-size is math then the computed value of font-size is obtained by multiplying
  1240. // the inherited value of font-size by a nonzero scale factor calculated by the following procedure:
  1241. // 1. Let A be the inherited math-depth value, B the computed math-depth value, C be 0.71 and S be 1.0
  1242. int inherited_math_depth = parent_element && parent_element->computed_css_values()
  1243. ? parent_element->computed_css_values()->math_depth()
  1244. : InitialValues::math_depth();
  1245. int computed_math_depth = math_depth;
  1246. auto size_ratio = 0.71;
  1247. auto scale = 1.0;
  1248. // 2. If A = B then return S.
  1249. bool invert_scale_factor = false;
  1250. if (inherited_math_depth == computed_math_depth) {
  1251. return scale;
  1252. }
  1253. // If B < A, swap A and B and set InvertScaleFactor to true.
  1254. else if (computed_math_depth < inherited_math_depth) {
  1255. AK::swap(inherited_math_depth, computed_math_depth);
  1256. invert_scale_factor = true;
  1257. }
  1258. // Otherwise B > A and set InvertScaleFactor to false.
  1259. else {
  1260. invert_scale_factor = false;
  1261. }
  1262. // 3. Let E be B - A > 0.
  1263. double e = (computed_math_depth - inherited_math_depth) > 0;
  1264. // FIXME: 4. If the inherited first available font has an OpenType MATH table:
  1265. // - If A ≤ 0 and B ≥ 2 then multiply S by scriptScriptPercentScaleDown and decrement E by 2.
  1266. // - Otherwise if A = 1 then multiply S by scriptScriptPercentScaleDown / scriptPercentScaleDown and decrement E by 1.
  1267. // - Otherwise if B = 1 then multiply S by scriptPercentScaleDown and decrement E by 1.
  1268. // 5. Multiply S by C^E.
  1269. scale *= AK::pow(size_ratio, e);
  1270. // 6. Return S if InvertScaleFactor is false and 1/S otherwise.
  1271. if (!invert_scale_factor)
  1272. return scale;
  1273. return 1.0 / scale;
  1274. };
  1275. font_size_in_px = parent_font_size().scale_by(math_scaling_factor());
  1276. } else {
  1277. // https://w3c.github.io/csswg-drafts/css-fonts/#valdef-font-size-relative-size
  1278. // TODO: If the parent element has a keyword font size in the absolute size keyword mapping table,
  1279. // larger may compute the font size to the next entry in the table,
  1280. // and smaller may compute the font size to the previous entry in the table.
  1281. if (identifier == CSS::ValueID::Smaller || identifier == CSS::ValueID::Larger) {
  1282. if (parent_element && parent_element->computed_css_values()) {
  1283. font_size_in_px = CSSPixels::nearest_value_for(parent_element->computed_css_values()->first_available_computed_font().pixel_metrics().size);
  1284. }
  1285. }
  1286. font_size_in_px *= get_absolute_size_mapping(identifier);
  1287. }
  1288. } else {
  1289. Length::ResolutionContext const length_resolution_context {
  1290. .viewport_rect = viewport_rect(),
  1291. .font_metrics = font_metrics,
  1292. .root_font_metrics = m_root_element_font_metrics,
  1293. };
  1294. Optional<Length> maybe_length;
  1295. if (font_size.is_percentage()) {
  1296. // Percentages refer to parent element's font size
  1297. maybe_length = Length::make_px(CSSPixels::nearest_value_for(font_size.as_percentage().percentage().as_fraction() * parent_font_size().to_double()));
  1298. } else if (font_size.is_length()) {
  1299. maybe_length = font_size.as_length().length();
  1300. } else if (font_size.is_calculated()) {
  1301. if (font_size.as_calculated().contains_percentage()) {
  1302. maybe_length = font_size.as_calculated().resolve_length_percentage(length_resolution_context, Length::make_px(parent_font_size()));
  1303. } else {
  1304. maybe_length = font_size.as_calculated().resolve_length(length_resolution_context);
  1305. }
  1306. }
  1307. if (maybe_length.has_value()) {
  1308. font_size_in_px = maybe_length.value().to_px(length_resolution_context);
  1309. }
  1310. }
  1311. auto slope = font_style.to_font_slope();
  1312. // FIXME: Implement the full font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  1313. // Note: This is modified by the find_font() lambda
  1314. bool monospace = false;
  1315. float const font_size_in_pt = font_size_in_px * 0.75f;
  1316. auto find_font = [&](FlyString const& family) -> RefPtr<Gfx::FontCascadeList const> {
  1317. FontFaceKey key {
  1318. .family_name = family,
  1319. .weight = weight,
  1320. .slope = slope,
  1321. };
  1322. auto result = Gfx::FontCascadeList::create();
  1323. if (auto it = m_loaded_fonts.find(key); it != m_loaded_fonts.end()) {
  1324. auto const& loaders = it->value;
  1325. for (auto const& loader : loaders) {
  1326. if (auto found_font = loader->font_with_point_size(font_size_in_pt))
  1327. result->add(*found_font, loader->unicode_ranges());
  1328. }
  1329. return result;
  1330. }
  1331. if (auto found_font = font_matching_algorithm(key, font_size_in_pt); found_font && !found_font->is_empty()) {
  1332. return found_font;
  1333. }
  1334. if (auto found_font = Gfx::FontDatabase::the().get(family, font_size_in_pt, weight, width, slope, Gfx::Font::AllowInexactSizeMatch::Yes)) {
  1335. result->add(*found_font);
  1336. return result;
  1337. }
  1338. return {};
  1339. };
  1340. auto find_generic_font = [&](ValueID font_id) -> RefPtr<Gfx::FontCascadeList const> {
  1341. Platform::GenericFont generic_font {};
  1342. switch (font_id) {
  1343. case ValueID::Monospace:
  1344. case ValueID::UiMonospace:
  1345. generic_font = Platform::GenericFont::Monospace;
  1346. monospace = true;
  1347. break;
  1348. case ValueID::Serif:
  1349. generic_font = Platform::GenericFont::Serif;
  1350. break;
  1351. case ValueID::Fantasy:
  1352. generic_font = Platform::GenericFont::Fantasy;
  1353. break;
  1354. case ValueID::SansSerif:
  1355. generic_font = Platform::GenericFont::SansSerif;
  1356. break;
  1357. case ValueID::Cursive:
  1358. generic_font = Platform::GenericFont::Cursive;
  1359. break;
  1360. case ValueID::UiSerif:
  1361. generic_font = Platform::GenericFont::UiSerif;
  1362. break;
  1363. case ValueID::UiSansSerif:
  1364. generic_font = Platform::GenericFont::UiSansSerif;
  1365. break;
  1366. case ValueID::UiRounded:
  1367. generic_font = Platform::GenericFont::UiRounded;
  1368. break;
  1369. default:
  1370. return {};
  1371. }
  1372. return find_font(Platform::FontPlugin::the().generic_font_name(generic_font));
  1373. };
  1374. auto font_list = Gfx::FontCascadeList::create();
  1375. if (font_family.is_value_list()) {
  1376. auto const& family_list = static_cast<StyleValueList const&>(font_family).values();
  1377. for (auto const& family : family_list) {
  1378. RefPtr<Gfx::FontCascadeList const> other_font_list;
  1379. if (family->is_identifier()) {
  1380. other_font_list = find_generic_font(family->to_identifier());
  1381. } else if (family->is_string()) {
  1382. other_font_list = find_font(family->as_string().string_value());
  1383. } else if (family->is_custom_ident()) {
  1384. other_font_list = find_font(family->as_custom_ident().custom_ident());
  1385. }
  1386. if (other_font_list)
  1387. font_list->extend(*other_font_list);
  1388. }
  1389. } else if (font_family.is_identifier()) {
  1390. if (auto other_font_list = find_generic_font(font_family.to_identifier()))
  1391. font_list->extend(*other_font_list);
  1392. } else if (font_family.is_string()) {
  1393. if (auto other_font_list = find_font(font_family.as_string().string_value()))
  1394. font_list->extend(*other_font_list);
  1395. } else if (font_family.is_custom_ident()) {
  1396. if (auto other_font_list = find_font(font_family.as_custom_ident().custom_ident()))
  1397. font_list->extend(*other_font_list);
  1398. }
  1399. auto found_font = StyleProperties::font_fallback(monospace, bold);
  1400. if (auto scaled_fallback_font = found_font->with_size(font_size_in_pt)) {
  1401. font_list->add(*scaled_fallback_font);
  1402. } else {
  1403. font_list->add(*found_font);
  1404. }
  1405. return font_list;
  1406. }
  1407. void StyleComputer::compute_font(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1408. {
  1409. // To compute the font, first ensure that we've defaulted the relevant CSS font properties.
  1410. // FIXME: This should be more sophisticated.
  1411. compute_defaulted_property_value(style, element, CSS::PropertyID::FontFamily, pseudo_element);
  1412. compute_defaulted_property_value(style, element, CSS::PropertyID::FontSize, pseudo_element);
  1413. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStretch, pseudo_element);
  1414. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStyle, pseudo_element);
  1415. compute_defaulted_property_value(style, element, CSS::PropertyID::FontWeight, pseudo_element);
  1416. compute_defaulted_property_value(style, element, CSS::PropertyID::LineHeight, pseudo_element);
  1417. auto font_family = style.property(CSS::PropertyID::FontFamily);
  1418. auto font_size = style.property(CSS::PropertyID::FontSize);
  1419. auto font_style = style.property(CSS::PropertyID::FontStyle);
  1420. auto font_weight = style.property(CSS::PropertyID::FontWeight);
  1421. auto font_stretch = style.property(CSS::PropertyID::FontStretch);
  1422. auto font_list = compute_font_for_style_values(element, pseudo_element, font_family, font_size, font_style, font_weight, font_stretch, style.math_depth());
  1423. VERIFY(font_list);
  1424. VERIFY(!font_list->is_empty());
  1425. RefPtr<Gfx::Font const> const found_font = font_list->first();
  1426. style.set_property(CSS::PropertyID::FontSize, LengthStyleValue::create(CSS::Length::make_px(CSSPixels::nearest_value_for(found_font->pixel_size()))), nullptr);
  1427. style.set_property(CSS::PropertyID::FontWeight, NumberStyleValue::create(font_weight->to_font_weight()));
  1428. style.set_computed_font_list(*font_list);
  1429. if (element && is<HTML::HTMLHtmlElement>(*element)) {
  1430. const_cast<StyleComputer&>(*this).m_root_element_font_metrics = calculate_root_element_font_metrics(style);
  1431. }
  1432. }
  1433. Gfx::Font const& StyleComputer::initial_font() const
  1434. {
  1435. // FIXME: This is not correct.
  1436. return StyleProperties::font_fallback(false, false);
  1437. }
  1438. void StyleComputer::absolutize_values(StyleProperties& style) const
  1439. {
  1440. Length::FontMetrics font_metrics {
  1441. m_root_element_font_metrics.font_size,
  1442. style.first_available_computed_font().pixel_metrics()
  1443. };
  1444. auto font_size = style.property(CSS::PropertyID::FontSize)->as_length().length().to_px(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1445. font_metrics.font_size = font_size;
  1446. // NOTE: Percentage line-height values are relative to the font-size of the element.
  1447. // We have to resolve them right away, so that the *computed* line-height is ready for inheritance.
  1448. // We can't simply absolutize *all* percentage values against the font size,
  1449. // because most percentages are relative to containing block metrics.
  1450. auto line_height_value_slot = style.m_property_values[to_underlying(CSS::PropertyID::LineHeight)].map([](auto& x) -> auto& { return x.style; });
  1451. if (line_height_value_slot.has_value() && (*line_height_value_slot)->is_percentage()) {
  1452. *line_height_value_slot = LengthStyleValue::create(
  1453. Length::make_px(CSSPixels::nearest_value_for(font_size * static_cast<double>((*line_height_value_slot)->as_percentage().percentage().as_fraction()))));
  1454. }
  1455. auto line_height = style.compute_line_height(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1456. font_metrics.line_height = line_height;
  1457. // NOTE: line-height might be using lh which should be resolved against the parent line height (like we did here already)
  1458. if (line_height_value_slot.has_value() && (*line_height_value_slot)->is_length())
  1459. (*line_height_value_slot) = LengthStyleValue::create(Length::make_px(line_height));
  1460. for (size_t i = 0; i < style.m_property_values.size(); ++i) {
  1461. auto& value_slot = style.m_property_values[i];
  1462. if (!value_slot.has_value())
  1463. continue;
  1464. value_slot->style = value_slot->style->absolutized(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1465. }
  1466. style.set_line_height({}, line_height);
  1467. }
  1468. void StyleComputer::resolve_effective_overflow_values(StyleProperties& style) const
  1469. {
  1470. // https://www.w3.org/TR/css-overflow-3/#overflow-control
  1471. // The visible/clip values of overflow compute to auto/hidden (respectively) if one of overflow-x or
  1472. // overflow-y is neither visible nor clip.
  1473. auto overflow_x = value_id_to_overflow(style.property(PropertyID::OverflowX)->to_identifier());
  1474. auto overflow_y = value_id_to_overflow(style.property(PropertyID::OverflowY)->to_identifier());
  1475. auto overflow_x_is_visible_or_clip = overflow_x == Overflow::Visible || overflow_x == Overflow::Clip;
  1476. auto overflow_y_is_visible_or_clip = overflow_y == Overflow::Visible || overflow_y == Overflow::Clip;
  1477. if (!overflow_x_is_visible_or_clip || !overflow_y_is_visible_or_clip) {
  1478. if (overflow_x == CSS::Overflow::Visible)
  1479. style.set_property(CSS::PropertyID::OverflowX, IdentifierStyleValue::create(CSS::ValueID::Auto), nullptr);
  1480. if (overflow_x == CSS::Overflow::Clip)
  1481. style.set_property(CSS::PropertyID::OverflowX, IdentifierStyleValue::create(CSS::ValueID::Hidden), nullptr);
  1482. if (overflow_y == CSS::Overflow::Visible)
  1483. style.set_property(CSS::PropertyID::OverflowY, IdentifierStyleValue::create(CSS::ValueID::Auto), nullptr);
  1484. if (overflow_y == CSS::Overflow::Clip)
  1485. style.set_property(CSS::PropertyID::OverflowY, IdentifierStyleValue::create(CSS::ValueID::Hidden), nullptr);
  1486. }
  1487. }
  1488. enum class BoxTypeTransformation {
  1489. None,
  1490. Blockify,
  1491. Inlinify,
  1492. };
  1493. static BoxTypeTransformation required_box_type_transformation(StyleProperties const& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement::Type> const& pseudo_element)
  1494. {
  1495. // NOTE: We never blockify <br> elements. They are always inline.
  1496. // There is currently no way to express in CSS how a <br> element really behaves.
  1497. // Spec issue: https://github.com/whatwg/html/issues/2291
  1498. if (is<HTML::HTMLBRElement>(element))
  1499. return BoxTypeTransformation::None;
  1500. // Absolute positioning or floating an element blockifies the box’s display type. [CSS2]
  1501. if (style.position() == CSS::Positioning::Absolute || style.position() == CSS::Positioning::Fixed || style.float_() != CSS::Float::None)
  1502. return BoxTypeTransformation::Blockify;
  1503. // FIXME: Containment in a ruby container inlinifies the box’s display type, as described in [CSS-RUBY-1].
  1504. // NOTE: If we're computing style for a pseudo-element, the effective parent will be the originating element itself, not its parent.
  1505. auto const* parent = pseudo_element.has_value() ? &element : element.parent_element();
  1506. // A parent with a grid or flex display value blockifies the box’s display type. [CSS-GRID-1] [CSS-FLEXBOX-1]
  1507. if (parent && parent->computed_css_values()) {
  1508. auto const& parent_display = parent->computed_css_values()->display();
  1509. if (parent_display.is_grid_inside() || parent_display.is_flex_inside())
  1510. return BoxTypeTransformation::Blockify;
  1511. }
  1512. return BoxTypeTransformation::None;
  1513. }
  1514. // https://drafts.csswg.org/css-display/#transformations
  1515. void StyleComputer::transform_box_type_if_needed(StyleProperties& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1516. {
  1517. // 2.7. Automatic Box Type Transformations
  1518. // Some layout effects require blockification or inlinification of the box type,
  1519. // which sets the box’s computed outer display type to block or inline (respectively).
  1520. // (This has no effect on display types that generate no box at all, such as none or contents.)
  1521. auto display = style.display();
  1522. if (display.is_none() || display.is_contents())
  1523. return;
  1524. auto new_display = display;
  1525. if (display.is_math_inside()) {
  1526. // https://w3c.github.io/mathml-core/#new-display-math-value
  1527. // For elements that are not MathML elements, if the specified value of display is inline math or block math
  1528. // then the computed value is block flow and inline flow respectively.
  1529. if (element.namespace_uri() != Namespace::MathML)
  1530. new_display = CSS::Display { display.outside(), CSS::DisplayInside::Flow };
  1531. // For the mtable element the computed value is block table and inline table respectively.
  1532. else if (element.tag_name().equals_ignoring_ascii_case("mtable"sv))
  1533. new_display = CSS::Display { display.outside(), CSS::DisplayInside::Table };
  1534. // For the mtr element, the computed value is table-row.
  1535. else if (element.tag_name().equals_ignoring_ascii_case("mtr"sv))
  1536. new_display = CSS::Display { CSS::DisplayInternal::TableRow };
  1537. // For the mtd element, the computed value is table-cell.
  1538. else if (element.tag_name().equals_ignoring_ascii_case("mtd"sv))
  1539. new_display = CSS::Display { CSS::DisplayInternal::TableCell };
  1540. }
  1541. switch (required_box_type_transformation(style, element, pseudo_element)) {
  1542. case BoxTypeTransformation::None:
  1543. break;
  1544. case BoxTypeTransformation::Blockify:
  1545. if (display.is_block_outside())
  1546. return;
  1547. // If a layout-internal box is blockified, its inner display type converts to flow so that it becomes a block container.
  1548. if (display.is_internal()) {
  1549. new_display = CSS::Display::from_short(CSS::Display::Short::Block);
  1550. } else {
  1551. VERIFY(display.is_outside_and_inside());
  1552. // For legacy reasons, if an inline block box (inline flow-root) is blockified, it becomes a block box (losing its flow-root nature).
  1553. // For consistency, a run-in flow-root box also blockifies to a block box.
  1554. if (display.is_inline_block()) {
  1555. new_display = CSS::Display { CSS::DisplayOutside::Block, CSS::DisplayInside::Flow, display.list_item() };
  1556. } else {
  1557. new_display = CSS::Display { CSS::DisplayOutside::Block, display.inside(), display.list_item() };
  1558. }
  1559. }
  1560. break;
  1561. case BoxTypeTransformation::Inlinify:
  1562. if (display.is_inline_outside()) {
  1563. // FIXME: If an inline box (inline flow) is inlinified, it recursively inlinifies all of its in-flow children,
  1564. // so that no block-level descendants break up the inline formatting context in which it participates.
  1565. if (display.is_flow_inside()) {
  1566. dbgln("FIXME: Inlinify inline box children recursively");
  1567. }
  1568. break;
  1569. }
  1570. if (display.is_internal()) {
  1571. // Inlinification has no effect on layout-internal boxes. (However, placement in such an inline context will typically cause them
  1572. // to be wrapped in an appropriately-typed anonymous inline-level box.)
  1573. } else {
  1574. VERIFY(display.is_outside_and_inside());
  1575. // If a block box (block flow) is inlinified, its inner display type is set to flow-root so that it remains a block container.
  1576. if (display.is_block_outside() && display.is_flow_inside()) {
  1577. new_display = CSS::Display { CSS::DisplayOutside::Inline, CSS::DisplayInside::FlowRoot, display.list_item() };
  1578. }
  1579. new_display = CSS::Display { CSS::DisplayOutside::Inline, display.inside(), display.list_item() };
  1580. }
  1581. break;
  1582. }
  1583. if (new_display != display)
  1584. style.set_property(CSS::PropertyID::Display, DisplayStyleValue::create(new_display), style.property_source_declaration(CSS::PropertyID::Display));
  1585. }
  1586. NonnullRefPtr<StyleProperties> StyleComputer::create_document_style() const
  1587. {
  1588. auto style = StyleProperties::create();
  1589. compute_math_depth(style, nullptr, {});
  1590. compute_font(style, nullptr, {});
  1591. compute_defaulted_values(style, nullptr, {});
  1592. absolutize_values(style);
  1593. style->set_property(CSS::PropertyID::Width, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().width())), nullptr);
  1594. style->set_property(CSS::PropertyID::Height, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().height())), nullptr);
  1595. style->set_property(CSS::PropertyID::Display, CSS::DisplayStyleValue::create(CSS::Display::from_short(CSS::Display::Short::Block)), nullptr);
  1596. return style;
  1597. }
  1598. ErrorOr<NonnullRefPtr<StyleProperties>> StyleComputer::compute_style(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1599. {
  1600. auto style = TRY(compute_style_impl(element, move(pseudo_element), ComputeStyleMode::Normal));
  1601. return style.release_nonnull();
  1602. }
  1603. ErrorOr<RefPtr<StyleProperties>> StyleComputer::compute_pseudo_element_style_if_needed(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1604. {
  1605. return compute_style_impl(element, move(pseudo_element), ComputeStyleMode::CreatePseudoElementStyleIfNeeded);
  1606. }
  1607. ErrorOr<RefPtr<StyleProperties>> StyleComputer::compute_style_impl(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, ComputeStyleMode mode) const
  1608. {
  1609. build_rule_cache_if_needed();
  1610. // Special path for elements that use pseudo element as style selector
  1611. if (element.use_pseudo_element().has_value()) {
  1612. auto& parent_element = verify_cast<HTML::HTMLElement>(*element.root().parent_or_shadow_host());
  1613. auto style = TRY(compute_style(parent_element, *element.use_pseudo_element()));
  1614. // Merge back inline styles
  1615. if (element.has_attribute(HTML::AttributeNames::style)) {
  1616. auto* inline_style = parse_css_style_attribute(CSS::Parser::ParsingContext(document()), *element.get_attribute(HTML::AttributeNames::style), element);
  1617. for (auto const& property : inline_style->properties())
  1618. style->set_property(property.property_id, property.value);
  1619. }
  1620. return style;
  1621. }
  1622. auto style = StyleProperties::create();
  1623. // 1. Perform the cascade. This produces the "specified style"
  1624. bool did_match_any_pseudo_element_rules = false;
  1625. TRY(compute_cascaded_values(style, element, pseudo_element, did_match_any_pseudo_element_rules, mode));
  1626. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded && !did_match_any_pseudo_element_rules)
  1627. return nullptr;
  1628. // 2. Compute the math-depth property, since that might affect the font-size
  1629. compute_math_depth(style, &element, pseudo_element);
  1630. // 3. Compute the font, since that may be needed for font-relative CSS units
  1631. compute_font(style, &element, pseudo_element);
  1632. // 4. Absolutize values, turning font/viewport relative lengths into absolute lengths
  1633. absolutize_values(style);
  1634. // 5. Default the values, applying inheritance and 'initial' as needed
  1635. compute_defaulted_values(style, &element, pseudo_element);
  1636. // 6. Run automatic box type transformations
  1637. transform_box_type_if_needed(style, element, pseudo_element);
  1638. // 7. Resolve effective overflow values
  1639. resolve_effective_overflow_values(style);
  1640. return style;
  1641. }
  1642. void StyleComputer::build_rule_cache_if_needed() const
  1643. {
  1644. if (m_author_rule_cache && m_user_rule_cache && m_user_agent_rule_cache)
  1645. return;
  1646. const_cast<StyleComputer&>(*this).build_rule_cache();
  1647. }
  1648. NonnullOwnPtr<StyleComputer::RuleCache> StyleComputer::make_rule_cache_for_cascade_origin(CascadeOrigin cascade_origin)
  1649. {
  1650. auto rule_cache = make<RuleCache>();
  1651. size_t num_class_rules = 0;
  1652. size_t num_id_rules = 0;
  1653. size_t num_tag_name_rules = 0;
  1654. size_t num_pseudo_element_rules = 0;
  1655. Vector<MatchingRule> matching_rules;
  1656. size_t style_sheet_index = 0;
  1657. for_each_stylesheet(cascade_origin, [&](auto& sheet) {
  1658. size_t rule_index = 0;
  1659. sheet.for_each_effective_style_rule([&](auto const& rule) {
  1660. size_t selector_index = 0;
  1661. for (CSS::Selector const& selector : rule.selectors()) {
  1662. MatchingRule matching_rule {
  1663. &rule,
  1664. sheet,
  1665. style_sheet_index,
  1666. rule_index,
  1667. selector_index,
  1668. selector.specificity()
  1669. };
  1670. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  1671. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::PseudoElement) {
  1672. matching_rule.contains_pseudo_element = true;
  1673. ++num_pseudo_element_rules;
  1674. break;
  1675. }
  1676. }
  1677. bool added_to_bucket = false;
  1678. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  1679. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Id) {
  1680. rule_cache->rules_by_id.ensure(simple_selector.name()).append(move(matching_rule));
  1681. ++num_id_rules;
  1682. added_to_bucket = true;
  1683. break;
  1684. }
  1685. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Class) {
  1686. rule_cache->rules_by_class.ensure(simple_selector.name()).append(move(matching_rule));
  1687. ++num_class_rules;
  1688. added_to_bucket = true;
  1689. break;
  1690. }
  1691. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::TagName) {
  1692. rule_cache->rules_by_tag_name.ensure(simple_selector.qualified_name().name.lowercase_name).append(move(matching_rule));
  1693. ++num_tag_name_rules;
  1694. added_to_bucket = true;
  1695. break;
  1696. }
  1697. }
  1698. if (!added_to_bucket)
  1699. rule_cache->other_rules.append(move(matching_rule));
  1700. ++selector_index;
  1701. }
  1702. ++rule_index;
  1703. });
  1704. // Loosely based on https://drafts.csswg.org/css-animations-2/#keyframe-processing
  1705. sheet.for_each_effective_keyframes_at_rule([&](CSSKeyframesRule const& rule) {
  1706. auto keyframe_set = adopt_ref(*new Animations::KeyframeEffect::KeyFrameSet);
  1707. HashTable<PropertyID> animated_properties;
  1708. // Forwards pass, resolve all the user-specified keyframe properties.
  1709. for (auto const& keyframe : rule.keyframes()) {
  1710. Animations::KeyframeEffect::KeyFrameSet::ResolvedKeyFrame resolved_keyframe;
  1711. auto key = static_cast<u64>(keyframe->key().value() * Animations::KeyframeEffect::AnimationKeyFrameKeyScaleFactor);
  1712. auto keyframe_rule = keyframe->style();
  1713. if (!is<PropertyOwningCSSStyleDeclaration>(*keyframe_rule))
  1714. continue;
  1715. auto const& keyframe_style = static_cast<PropertyOwningCSSStyleDeclaration const&>(*keyframe_rule);
  1716. for (auto const& it : keyframe_style.properties()) {
  1717. for_each_property_expanding_shorthands(it.property_id, it.value, [&](PropertyID shorthand_id, StyleValue const& shorthand_value) {
  1718. animated_properties.set(shorthand_id);
  1719. resolved_keyframe.resolved_properties.set(shorthand_id, NonnullRefPtr<StyleValue const> { shorthand_value });
  1720. });
  1721. }
  1722. keyframe_set->keyframes_by_key.insert(key, resolved_keyframe);
  1723. }
  1724. Animations::KeyframeEffect::generate_initial_and_final_frames(keyframe_set, animated_properties);
  1725. if constexpr (LIBWEB_CSS_DEBUG) {
  1726. dbgln("Resolved keyframe set '{}' into {} keyframes:", rule.name(), keyframe_set->keyframes_by_key.size());
  1727. for (auto it = keyframe_set->keyframes_by_key.begin(); it != keyframe_set->keyframes_by_key.end(); ++it)
  1728. dbgln(" - keyframe {}: {} properties", it.key(), it->resolved_properties.size());
  1729. }
  1730. rule_cache->rules_by_animation_keyframes.set(rule.name(), move(keyframe_set));
  1731. });
  1732. ++style_sheet_index;
  1733. });
  1734. if constexpr (LIBWEB_CSS_DEBUG) {
  1735. dbgln("Built rule cache!");
  1736. dbgln(" ID: {}", num_id_rules);
  1737. dbgln(" Class: {}", num_class_rules);
  1738. dbgln(" TagName: {}", num_tag_name_rules);
  1739. dbgln("PseudoElement: {}", num_pseudo_element_rules);
  1740. dbgln(" Other: {}", rule_cache->other_rules.size());
  1741. dbgln(" Total: {}", num_class_rules + num_id_rules + num_tag_name_rules + rule_cache->other_rules.size());
  1742. }
  1743. return rule_cache;
  1744. }
  1745. void StyleComputer::build_rule_cache()
  1746. {
  1747. if (auto user_style_source = document().page().user_style(); user_style_source.has_value()) {
  1748. m_user_style_sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document()), user_style_source.value()));
  1749. }
  1750. m_author_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::Author);
  1751. m_user_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::User);
  1752. m_user_agent_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::UserAgent);
  1753. }
  1754. void StyleComputer::invalidate_rule_cache()
  1755. {
  1756. m_author_rule_cache = nullptr;
  1757. // NOTE: We could be smarter about keeping the user rule cache, and style sheet.
  1758. // Currently we are re-parsing the user style sheet every time we build the caches,
  1759. // as it may have changed.
  1760. m_user_rule_cache = nullptr;
  1761. m_user_style_sheet = nullptr;
  1762. // NOTE: It might not be necessary to throw away the UA rule cache.
  1763. // If we are sure that it's safe, we could keep it as an optimization.
  1764. m_user_agent_rule_cache = nullptr;
  1765. }
  1766. void StyleComputer::did_load_font(FlyString const&)
  1767. {
  1768. document().invalidate_style();
  1769. }
  1770. void StyleComputer::load_fonts_from_sheet(CSSStyleSheet const& sheet)
  1771. {
  1772. for (auto const& rule : static_cast<CSSStyleSheet const&>(sheet).rules()) {
  1773. if (!is<CSSFontFaceRule>(*rule))
  1774. continue;
  1775. auto const& font_face = static_cast<CSSFontFaceRule const&>(*rule).font_face();
  1776. if (font_face.sources().is_empty())
  1777. continue;
  1778. FontFaceKey key {
  1779. .family_name = font_face.font_family(),
  1780. .weight = font_face.weight().value_or(0),
  1781. .slope = font_face.slope().value_or(0),
  1782. };
  1783. Vector<URL> urls;
  1784. for (auto& source : font_face.sources()) {
  1785. // FIXME: These should be loaded relative to the stylesheet URL instead of the document URL.
  1786. if (source.local_or_url.has<URL>())
  1787. urls.append(m_document->parse_url(MUST(source.local_or_url.get<URL>().to_string())));
  1788. // FIXME: Handle local()
  1789. }
  1790. if (urls.is_empty())
  1791. continue;
  1792. auto loader = make<FontLoader>(const_cast<StyleComputer&>(*this), font_face.font_family(), font_face.unicode_ranges(), move(urls));
  1793. auto maybe_font_loaders_list = const_cast<StyleComputer&>(*this).m_loaded_fonts.get(key);
  1794. if (maybe_font_loaders_list.has_value()) {
  1795. maybe_font_loaders_list->append(move(loader));
  1796. } else {
  1797. FontLoaderList loaders;
  1798. loaders.append(move(loader));
  1799. const_cast<StyleComputer&>(*this).m_loaded_fonts.set(key, move(loaders));
  1800. }
  1801. }
  1802. }
  1803. void StyleComputer::compute_math_depth(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1804. {
  1805. // https://w3c.github.io/mathml-core/#propdef-math-depth
  1806. // First, ensure that the relevant CSS properties have been defaulted.
  1807. // FIXME: This should be more sophisticated.
  1808. compute_defaulted_property_value(style, element, CSS::PropertyID::MathDepth, pseudo_element);
  1809. compute_defaulted_property_value(style, element, CSS::PropertyID::MathStyle, pseudo_element);
  1810. auto inherited_math_depth = [&]() {
  1811. if (!element || !element->parent_element())
  1812. return InitialValues::math_depth();
  1813. return element->parent_element()->computed_css_values()->math_depth();
  1814. };
  1815. auto value = style.property(CSS::PropertyID::MathDepth);
  1816. if (!value->is_math_depth()) {
  1817. style.set_math_depth(inherited_math_depth());
  1818. return;
  1819. }
  1820. auto& math_depth = value->as_math_depth();
  1821. auto resolve_integer = [&](StyleValue const& integer_value) {
  1822. if (integer_value.is_integer())
  1823. return integer_value.as_integer().integer();
  1824. if (integer_value.is_calculated())
  1825. return integer_value.as_calculated().resolve_integer().value();
  1826. VERIFY_NOT_REACHED();
  1827. };
  1828. // The computed value of the math-depth value is determined as follows:
  1829. // - If the specified value of math-depth is auto-add and the inherited value of math-style is compact
  1830. // then the computed value of math-depth of the element is its inherited value plus one.
  1831. if (math_depth.is_auto_add() && style.property(CSS::PropertyID::MathStyle)->to_identifier() == CSS::ValueID::Compact) {
  1832. style.set_math_depth(inherited_math_depth() + 1);
  1833. return;
  1834. }
  1835. // - If the specified value of math-depth is of the form add(<integer>) then the computed value of
  1836. // math-depth of the element is its inherited value plus the specified integer.
  1837. if (math_depth.is_add()) {
  1838. style.set_math_depth(inherited_math_depth() + resolve_integer(*math_depth.integer_value()));
  1839. return;
  1840. }
  1841. // - If the specified value of math-depth is of the form <integer> then the computed value of math-depth
  1842. // of the element is the specified integer.
  1843. if (math_depth.is_integer()) {
  1844. style.set_math_depth(resolve_integer(*math_depth.integer_value()));
  1845. return;
  1846. }
  1847. // - Otherwise, the computed value of math-depth of the element is the inherited one.
  1848. style.set_math_depth(inherited_math_depth());
  1849. }
  1850. }