StyleComputer.cpp 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
  1. /*
  2. * Copyright (c) 2018-2023, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021, the SerenityOS developers.
  4. * Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org>
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause
  7. */
  8. #include <AK/BinarySearch.h>
  9. #include <AK/Debug.h>
  10. #include <AK/Error.h>
  11. #include <AK/Find.h>
  12. #include <AK/Function.h>
  13. #include <AK/HashMap.h>
  14. #include <AK/QuickSort.h>
  15. #include <AK/TemporaryChange.h>
  16. #include <LibGfx/Font/Font.h>
  17. #include <LibGfx/Font/FontDatabase.h>
  18. #include <LibGfx/Font/FontStyleMapping.h>
  19. #include <LibGfx/Font/OpenType/Font.h>
  20. #include <LibGfx/Font/ScaledFont.h>
  21. #include <LibGfx/Font/VectorFont.h>
  22. #include <LibGfx/Font/WOFF/Font.h>
  23. #include <LibGfx/Font/WOFF2/Font.h>
  24. #include <LibWeb/CSS/CSSFontFaceRule.h>
  25. #include <LibWeb/CSS/CSSImportRule.h>
  26. #include <LibWeb/CSS/CSSStyleRule.h>
  27. #include <LibWeb/CSS/Parser/Parser.h>
  28. #include <LibWeb/CSS/SelectorEngine.h>
  29. #include <LibWeb/CSS/StyleComputer.h>
  30. #include <LibWeb/CSS/StyleSheet.h>
  31. #include <LibWeb/CSS/StyleValues/AngleStyleValue.h>
  32. #include <LibWeb/CSS/StyleValues/BorderRadiusStyleValue.h>
  33. #include <LibWeb/CSS/StyleValues/ColorStyleValue.h>
  34. #include <LibWeb/CSS/StyleValues/CustomIdentStyleValue.h>
  35. #include <LibWeb/CSS/StyleValues/DisplayStyleValue.h>
  36. #include <LibWeb/CSS/StyleValues/EasingStyleValue.h>
  37. #include <LibWeb/CSS/StyleValues/FilterValueListStyleValue.h>
  38. #include <LibWeb/CSS/StyleValues/GridTrackPlacementShorthandStyleValue.h>
  39. #include <LibWeb/CSS/StyleValues/GridTrackPlacementStyleValue.h>
  40. #include <LibWeb/CSS/StyleValues/GridTrackSizeListShorthandStyleValue.h>
  41. #include <LibWeb/CSS/StyleValues/GridTrackSizeListStyleValue.h>
  42. #include <LibWeb/CSS/StyleValues/IdentifierStyleValue.h>
  43. #include <LibWeb/CSS/StyleValues/IntegerStyleValue.h>
  44. #include <LibWeb/CSS/StyleValues/LengthStyleValue.h>
  45. #include <LibWeb/CSS/StyleValues/ListStyleStyleValue.h>
  46. #include <LibWeb/CSS/StyleValues/MathDepthStyleValue.h>
  47. #include <LibWeb/CSS/StyleValues/NumberStyleValue.h>
  48. #include <LibWeb/CSS/StyleValues/OverflowStyleValue.h>
  49. #include <LibWeb/CSS/StyleValues/PercentageStyleValue.h>
  50. #include <LibWeb/CSS/StyleValues/PlaceContentStyleValue.h>
  51. #include <LibWeb/CSS/StyleValues/PlaceItemsStyleValue.h>
  52. #include <LibWeb/CSS/StyleValues/PlaceSelfStyleValue.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/TextDecorationStyleValue.h>
  59. #include <LibWeb/CSS/StyleValues/TimeStyleValue.h>
  60. #include <LibWeb/CSS/StyleValues/TransformationStyleValue.h>
  61. #include <LibWeb/CSS/StyleValues/UnresolvedStyleValue.h>
  62. #include <LibWeb/CSS/StyleValues/UnsetStyleValue.h>
  63. #include <LibWeb/DOM/Document.h>
  64. #include <LibWeb/DOM/Element.h>
  65. #include <LibWeb/FontCache.h>
  66. #include <LibWeb/HTML/HTMLBRElement.h>
  67. #include <LibWeb/HTML/HTMLHtmlElement.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 <stdio.h>
  74. namespace AK {
  75. // traits for FontFaceKey
  76. template<>
  77. struct Traits<Web::CSS::FontFaceKey> : public GenericTraits<Web::CSS::FontFaceKey> {
  78. static unsigned hash(Web::CSS::FontFaceKey const& key) { return pair_int_hash(key.family_name.hash(), pair_int_hash(key.weight, key.slope)); }
  79. };
  80. }
  81. namespace Web::CSS {
  82. static DOM::Element const* element_to_inherit_style_from(DOM::Element const*, Optional<CSS::Selector::PseudoElement>);
  83. static NonnullRefPtr<StyleValue const> get_inherit_value(JS::Realm& initial_value_context_realm, CSS::PropertyID, DOM::Element const*, Optional<CSS::Selector::PseudoElement>);
  84. StyleComputer::StyleComputer(DOM::Document& document)
  85. : m_document(document)
  86. , m_default_font_metrics(16, Gfx::FontDatabase::default_font().pixel_metrics(), 16)
  87. , m_root_element_font_metrics(m_default_font_metrics)
  88. {
  89. }
  90. StyleComputer::~StyleComputer() = default;
  91. class StyleComputer::FontLoader : public ResourceClient {
  92. public:
  93. explicit FontLoader(StyleComputer& style_computer, FlyString family_name, Vector<AK::URL> urls)
  94. : m_style_computer(style_computer)
  95. , m_family_name(move(family_name))
  96. , m_urls(move(urls))
  97. {
  98. start_loading_next_url();
  99. }
  100. virtual ~FontLoader() override { }
  101. virtual void resource_did_load() override
  102. {
  103. auto result = try_load_font();
  104. if (result.is_error())
  105. return start_loading_next_url();
  106. m_vector_font = result.release_value();
  107. m_style_computer.did_load_font(m_family_name);
  108. }
  109. virtual void resource_did_fail() override
  110. {
  111. }
  112. RefPtr<Gfx::Font> font_with_point_size(float point_size) const
  113. {
  114. if (!m_vector_font)
  115. return nullptr;
  116. if (auto it = m_cached_fonts.find(point_size); it != m_cached_fonts.end())
  117. return it->value;
  118. // FIXME: It might be nicer to have a global cap on the number of fonts we cache
  119. // instead of doing it at the per-font level like this.
  120. constexpr size_t max_cached_font_size_count = 64;
  121. if (m_cached_fonts.size() > max_cached_font_size_count)
  122. m_cached_fonts.remove(m_cached_fonts.begin());
  123. auto font = adopt_ref(*new Gfx::ScaledFont(*m_vector_font, point_size, point_size));
  124. m_cached_fonts.set(point_size, font);
  125. return font;
  126. }
  127. private:
  128. void start_loading_next_url()
  129. {
  130. if (m_urls.is_empty())
  131. return;
  132. LoadRequest request;
  133. request.set_url(m_urls.take_first());
  134. // HACK: We're crudely computing the referer value and shoving it into the
  135. // request until fetch infrastructure is used here.
  136. auto referrer_url = ReferrerPolicy::strip_url_for_use_as_referrer(m_style_computer.document().url());
  137. if (referrer_url.has_value() && !request.headers().contains("Referer"))
  138. request.set_header("Referer", referrer_url->serialize());
  139. set_resource(ResourceLoader::the().load_resource(Resource::Type::Generic, request));
  140. }
  141. ErrorOr<NonnullRefPtr<Gfx::VectorFont>> try_load_font()
  142. {
  143. // 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
  144. auto mime_type = resource()->mime_type();
  145. if (mime_type == "font/ttf"sv || mime_type == "application/x-font-ttf"sv)
  146. return TRY(OpenType::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  147. if (mime_type == "font/woff"sv || mime_type == "application/font-woff"sv)
  148. return TRY(WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  149. if (mime_type == "font/woff2"sv || mime_type == "application/font-woff2"sv) {
  150. auto woff2 = WOFF2::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  151. if (woff2.is_error()) {
  152. dbgln("WOFF2 error: {}", woff2.error());
  153. return woff2.release_error();
  154. }
  155. return woff2.release_value();
  156. }
  157. auto ttf = OpenType::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  158. if (!ttf.is_error())
  159. return ttf.release_value();
  160. auto woff = WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  161. if (!woff.is_error())
  162. return woff.release_value();
  163. auto woff2 = WOFF2::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  164. if (!woff2.is_error())
  165. return woff2.release_value();
  166. return woff2.release_error();
  167. }
  168. StyleComputer& m_style_computer;
  169. FlyString m_family_name;
  170. RefPtr<Gfx::VectorFont> m_vector_font;
  171. Vector<AK::URL> m_urls;
  172. HashMap<float, NonnullRefPtr<Gfx::ScaledFont>> mutable m_cached_fonts;
  173. };
  174. struct StyleComputer::MatchingFontCandidate {
  175. FontFaceKey key;
  176. Variant<FontLoader*, Gfx::Typeface const*> loader_or_typeface;
  177. [[nodiscard]] RefPtr<Gfx::Font const> font_with_point_size(float point_size) const
  178. {
  179. if (auto* loader = loader_or_typeface.get_pointer<FontLoader*>(); loader) {
  180. return (*loader)->font_with_point_size(point_size);
  181. }
  182. return loader_or_typeface.get<Gfx::Typeface const*>()->get_font(point_size);
  183. }
  184. };
  185. static CSSStyleSheet& default_stylesheet(DOM::Document const& document)
  186. {
  187. static JS::Handle<CSSStyleSheet> sheet;
  188. if (!sheet.cell()) {
  189. extern StringView default_stylesheet_source;
  190. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), default_stylesheet_source));
  191. }
  192. return *sheet;
  193. }
  194. static CSSStyleSheet& quirks_mode_stylesheet(DOM::Document const& document)
  195. {
  196. static JS::Handle<CSSStyleSheet> sheet;
  197. if (!sheet.cell()) {
  198. extern StringView quirks_mode_stylesheet_source;
  199. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), quirks_mode_stylesheet_source));
  200. }
  201. return *sheet;
  202. }
  203. static CSSStyleSheet& mathml_stylesheet(DOM::Document const& document)
  204. {
  205. static JS::Handle<CSSStyleSheet> sheet;
  206. if (!sheet.cell()) {
  207. extern StringView mathml_stylesheet_source;
  208. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), mathml_stylesheet_source));
  209. }
  210. return *sheet;
  211. }
  212. static CSSStyleSheet& svg_stylesheet(DOM::Document const& document)
  213. {
  214. static JS::Handle<CSSStyleSheet> sheet;
  215. if (!sheet.cell()) {
  216. extern StringView svg_stylesheet_source;
  217. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), svg_stylesheet_source));
  218. }
  219. return *sheet;
  220. }
  221. template<typename Callback>
  222. void StyleComputer::for_each_stylesheet(CascadeOrigin cascade_origin, Callback callback) const
  223. {
  224. if (cascade_origin == CascadeOrigin::UserAgent) {
  225. callback(default_stylesheet(document()));
  226. if (document().in_quirks_mode())
  227. callback(quirks_mode_stylesheet(document()));
  228. callback(mathml_stylesheet(document()));
  229. callback(svg_stylesheet(document()));
  230. }
  231. if (cascade_origin == CascadeOrigin::User) {
  232. if (m_user_style_sheet)
  233. callback(*m_user_style_sheet);
  234. }
  235. if (cascade_origin == CascadeOrigin::Author) {
  236. for (auto const& sheet : document().style_sheets().sheets())
  237. callback(*sheet);
  238. }
  239. }
  240. StyleComputer::RuleCache const& StyleComputer::rule_cache_for_cascade_origin(CascadeOrigin cascade_origin) const
  241. {
  242. switch (cascade_origin) {
  243. case CascadeOrigin::Author:
  244. return *m_author_rule_cache;
  245. case CascadeOrigin::User:
  246. return *m_user_rule_cache;
  247. case CascadeOrigin::UserAgent:
  248. return *m_user_agent_rule_cache;
  249. default:
  250. TODO();
  251. }
  252. }
  253. [[nodiscard]] static bool filter_namespace_rule(DOM::Element const& element, MatchingRule const& rule)
  254. {
  255. // FIXME: Filter out non-default namespace using prefixes
  256. auto namespace_uri = rule.sheet->default_namespace();
  257. if (namespace_uri.has_value() && namespace_uri.value() != element.namespace_uri()) {
  258. return false;
  259. }
  260. return true;
  261. }
  262. Vector<MatchingRule> StyleComputer::collect_matching_rules(DOM::Element const& element, CascadeOrigin cascade_origin, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  263. {
  264. auto const& rule_cache = rule_cache_for_cascade_origin(cascade_origin);
  265. Vector<MatchingRule> rules_to_run;
  266. auto add_rules_to_run = [&](Vector<MatchingRule> const& rules) {
  267. rules_to_run.grow_capacity(rules_to_run.size() + rules.size());
  268. if (pseudo_element.has_value()) {
  269. for (auto const& rule : rules) {
  270. if (rule.contains_pseudo_element && filter_namespace_rule(element, rule))
  271. rules_to_run.append(rule);
  272. }
  273. } else {
  274. for (auto const& rule : rules) {
  275. if (filter_namespace_rule(element, rule))
  276. rules_to_run.append(rule);
  277. }
  278. }
  279. };
  280. for (auto const& class_name : element.class_names()) {
  281. if (auto it = rule_cache.rules_by_class.find(class_name); it != rule_cache.rules_by_class.end())
  282. add_rules_to_run(it->value);
  283. }
  284. if (auto id = element.get_attribute(HTML::AttributeNames::id); !id.is_null()) {
  285. if (auto it = rule_cache.rules_by_id.find(FlyString::from_deprecated_fly_string(id).release_value_but_fixme_should_propagate_errors()); it != rule_cache.rules_by_id.end())
  286. add_rules_to_run(it->value);
  287. }
  288. if (auto it = rule_cache.rules_by_tag_name.find(FlyString::from_deprecated_fly_string(element.local_name()).release_value_but_fixme_should_propagate_errors()); it != rule_cache.rules_by_tag_name.end())
  289. add_rules_to_run(it->value);
  290. add_rules_to_run(rule_cache.other_rules);
  291. Vector<MatchingRule> matching_rules;
  292. matching_rules.ensure_capacity(rules_to_run.size());
  293. for (auto const& rule_to_run : rules_to_run) {
  294. auto const& selector = rule_to_run.rule->selectors()[rule_to_run.selector_index];
  295. if (SelectorEngine::matches(selector, *rule_to_run.sheet, element, pseudo_element))
  296. matching_rules.append(rule_to_run);
  297. }
  298. return matching_rules;
  299. }
  300. static void sort_matching_rules(Vector<MatchingRule>& matching_rules)
  301. {
  302. quick_sort(matching_rules, [&](MatchingRule& a, MatchingRule& b) {
  303. auto const& a_selector = a.rule->selectors()[a.selector_index];
  304. auto const& b_selector = b.rule->selectors()[b.selector_index];
  305. auto a_specificity = a_selector->specificity();
  306. auto b_specificity = b_selector->specificity();
  307. if (a_selector->specificity() == b_selector->specificity()) {
  308. if (a.style_sheet_index == b.style_sheet_index)
  309. return a.rule_index < b.rule_index;
  310. return a.style_sheet_index < b.style_sheet_index;
  311. }
  312. return a_specificity < b_specificity;
  313. });
  314. }
  315. static void set_property_expanding_shorthands(StyleProperties& style, CSS::PropertyID property_id, StyleValue const& value, DOM::Document& document, CSS::CSSStyleDeclaration const* declaration, StyleProperties::PropertyValues const& properties_for_revert)
  316. {
  317. auto set_longhand_property = [&](CSS::PropertyID property_id, StyleValue const& value) {
  318. if (value.is_revert()) {
  319. auto& property_in_previous_cascade_origin = properties_for_revert[to_underlying(property_id)];
  320. if (property_in_previous_cascade_origin.has_value())
  321. style.set_property(property_id, property_in_previous_cascade_origin->style, property_in_previous_cascade_origin->declaration);
  322. } else {
  323. style.set_property(property_id, value, declaration);
  324. }
  325. };
  326. auto map_logical_property_to_real_property = [](PropertyID property_id) -> Optional<PropertyID> {
  327. // FIXME: Honor writing-mode, direction and text-orientation.
  328. switch (property_id) {
  329. case PropertyID::MarginBlockStart:
  330. return PropertyID::MarginTop;
  331. case PropertyID::MarginBlockEnd:
  332. return PropertyID::MarginBottom;
  333. case PropertyID::MarginInlineStart:
  334. return PropertyID::MarginLeft;
  335. case PropertyID::MarginInlineEnd:
  336. return PropertyID::MarginRight;
  337. case PropertyID::PaddingBlockStart:
  338. return PropertyID::PaddingTop;
  339. case PropertyID::PaddingBlockEnd:
  340. return PropertyID::PaddingBottom;
  341. case PropertyID::PaddingInlineStart:
  342. return PropertyID::PaddingLeft;
  343. case PropertyID::PaddingInlineEnd:
  344. return PropertyID::PaddingRight;
  345. case PropertyID::InsetBlockStart:
  346. return PropertyID::Top;
  347. case PropertyID::InsetBlockEnd:
  348. return PropertyID::Bottom;
  349. case PropertyID::InsetInlineStart:
  350. return PropertyID::Left;
  351. case PropertyID::InsetInlineEnd:
  352. return PropertyID::Right;
  353. default:
  354. return {};
  355. }
  356. };
  357. struct StartAndEndPropertyIDs {
  358. PropertyID start;
  359. PropertyID end;
  360. };
  361. auto map_logical_property_to_real_properties = [](PropertyID property_id) -> Optional<StartAndEndPropertyIDs> {
  362. // FIXME: Honor writing-mode, direction and text-orientation.
  363. switch (property_id) {
  364. case PropertyID::MarginBlock:
  365. return StartAndEndPropertyIDs { PropertyID::MarginTop, PropertyID::MarginBottom };
  366. case PropertyID::MarginInline:
  367. return StartAndEndPropertyIDs { PropertyID::MarginLeft, PropertyID::MarginRight };
  368. case PropertyID::PaddingBlock:
  369. return StartAndEndPropertyIDs { PropertyID::PaddingTop, PropertyID::PaddingBottom };
  370. case PropertyID::PaddingInline:
  371. return StartAndEndPropertyIDs { PropertyID::PaddingLeft, PropertyID::PaddingRight };
  372. case PropertyID::InsetBlock:
  373. return StartAndEndPropertyIDs { PropertyID::Top, PropertyID::Bottom };
  374. case PropertyID::InsetInline:
  375. return StartAndEndPropertyIDs { PropertyID::Left, PropertyID::Right };
  376. default:
  377. return {};
  378. }
  379. };
  380. if (auto real_property_id = map_logical_property_to_real_property(property_id); real_property_id.has_value())
  381. return set_property_expanding_shorthands(style, real_property_id.value(), value, document, declaration, properties_for_revert);
  382. if (auto real_property_ids = map_logical_property_to_real_properties(property_id); real_property_ids.has_value()) {
  383. if (value.is_value_list() && value.as_value_list().size() == 2) {
  384. auto const& start = value.as_value_list().values()[0];
  385. auto const& end = value.as_value_list().values()[1];
  386. set_property_expanding_shorthands(style, real_property_ids->start, start, document, declaration, properties_for_revert);
  387. set_property_expanding_shorthands(style, real_property_ids->end, end, document, declaration, properties_for_revert);
  388. return;
  389. }
  390. set_property_expanding_shorthands(style, real_property_ids->start, value, document, declaration, properties_for_revert);
  391. set_property_expanding_shorthands(style, real_property_ids->end, value, document, declaration, properties_for_revert);
  392. return;
  393. }
  394. if (value.is_shorthand()) {
  395. auto& shorthand_value = value.as_shorthand();
  396. auto& properties = shorthand_value.sub_properties();
  397. auto& values = shorthand_value.values();
  398. for (size_t i = 0; i < properties.size(); ++i)
  399. set_property_expanding_shorthands(style, properties[i], values[i], document, declaration, properties_for_revert);
  400. return;
  401. }
  402. auto assign_edge_values = [&](PropertyID top_property, PropertyID right_property, PropertyID bottom_property, PropertyID left_property, auto const& values) {
  403. if (values.size() == 4) {
  404. set_longhand_property(top_property, values[0]);
  405. set_longhand_property(right_property, values[1]);
  406. set_longhand_property(bottom_property, values[2]);
  407. set_longhand_property(left_property, values[3]);
  408. } else if (values.size() == 3) {
  409. set_longhand_property(top_property, values[0]);
  410. set_longhand_property(right_property, values[1]);
  411. set_longhand_property(bottom_property, values[2]);
  412. set_longhand_property(left_property, values[1]);
  413. } else if (values.size() == 2) {
  414. set_longhand_property(top_property, values[0]);
  415. set_longhand_property(right_property, values[1]);
  416. set_longhand_property(bottom_property, values[0]);
  417. set_longhand_property(left_property, values[1]);
  418. } else if (values.size() == 1) {
  419. set_longhand_property(top_property, values[0]);
  420. set_longhand_property(right_property, values[0]);
  421. set_longhand_property(bottom_property, values[0]);
  422. set_longhand_property(left_property, values[0]);
  423. }
  424. };
  425. if (property_id == CSS::PropertyID::TextDecoration) {
  426. if (value.is_text_decoration()) {
  427. auto const& text_decoration = value.as_text_decoration();
  428. set_longhand_property(CSS::PropertyID::TextDecorationLine, text_decoration.line());
  429. set_longhand_property(CSS::PropertyID::TextDecorationThickness, text_decoration.thickness());
  430. set_longhand_property(CSS::PropertyID::TextDecorationStyle, text_decoration.style());
  431. set_longhand_property(CSS::PropertyID::TextDecorationColor, text_decoration.color());
  432. return;
  433. }
  434. set_longhand_property(CSS::PropertyID::TextDecorationLine, value);
  435. set_longhand_property(CSS::PropertyID::TextDecorationThickness, value);
  436. set_longhand_property(CSS::PropertyID::TextDecorationStyle, value);
  437. set_longhand_property(CSS::PropertyID::TextDecorationColor, value);
  438. return;
  439. }
  440. if (property_id == CSS::PropertyID::Overflow) {
  441. if (value.is_overflow()) {
  442. auto const& overflow = value.as_overflow();
  443. set_longhand_property(CSS::PropertyID::OverflowX, overflow.overflow_x());
  444. set_longhand_property(CSS::PropertyID::OverflowY, overflow.overflow_y());
  445. return;
  446. }
  447. set_longhand_property(CSS::PropertyID::OverflowX, value);
  448. set_longhand_property(CSS::PropertyID::OverflowY, value);
  449. return;
  450. }
  451. if (property_id == CSS::PropertyID::PlaceContent) {
  452. if (value.is_place_content()) {
  453. auto const& place_content = value.as_place_content();
  454. set_longhand_property(CSS::PropertyID::AlignContent, place_content.align_content());
  455. set_longhand_property(CSS::PropertyID::JustifyContent, place_content.justify_content());
  456. return;
  457. }
  458. style.set_property(CSS::PropertyID::AlignContent, value);
  459. style.set_property(CSS::PropertyID::JustifyContent, value);
  460. return;
  461. }
  462. if (property_id == CSS::PropertyID::PlaceItems) {
  463. if (value.is_place_items()) {
  464. auto const& place_items = value.as_place_items();
  465. set_longhand_property(CSS::PropertyID::AlignItems, place_items.align_items());
  466. set_longhand_property(CSS::PropertyID::JustifyItems, place_items.justify_items());
  467. return;
  468. }
  469. set_longhand_property(CSS::PropertyID::AlignItems, value);
  470. set_longhand_property(CSS::PropertyID::JustifyItems, value);
  471. return;
  472. }
  473. if (property_id == CSS::PropertyID::PlaceSelf) {
  474. if (value.is_place_self()) {
  475. auto const& place_self = value.as_place_self();
  476. set_longhand_property(CSS::PropertyID::AlignSelf, place_self.align_self());
  477. set_longhand_property(CSS::PropertyID::JustifySelf, place_self.justify_self());
  478. return;
  479. }
  480. set_longhand_property(CSS::PropertyID::AlignSelf, value);
  481. set_longhand_property(CSS::PropertyID::JustifySelf, value);
  482. return;
  483. }
  484. if (property_id == CSS::PropertyID::Border) {
  485. set_property_expanding_shorthands(style, CSS::PropertyID::BorderTop, value, document, declaration, properties_for_revert);
  486. set_property_expanding_shorthands(style, CSS::PropertyID::BorderRight, value, document, declaration, properties_for_revert);
  487. set_property_expanding_shorthands(style, CSS::PropertyID::BorderBottom, value, document, declaration, properties_for_revert);
  488. set_property_expanding_shorthands(style, CSS::PropertyID::BorderLeft, value, document, declaration, properties_for_revert);
  489. // FIXME: Also reset border-image, in line with the spec: https://www.w3.org/TR/css-backgrounds-3/#border-shorthands
  490. return;
  491. }
  492. if (property_id == CSS::PropertyID::BorderRadius) {
  493. set_longhand_property(CSS::PropertyID::BorderTopLeftRadius, value);
  494. set_longhand_property(CSS::PropertyID::BorderTopRightRadius, value);
  495. set_longhand_property(CSS::PropertyID::BorderBottomRightRadius, value);
  496. set_longhand_property(CSS::PropertyID::BorderBottomLeftRadius, value);
  497. return;
  498. }
  499. if (property_id == CSS::PropertyID::BorderTop) {
  500. set_longhand_property(PropertyID::BorderTopWidth, value);
  501. set_longhand_property(PropertyID::BorderTopStyle, value);
  502. set_longhand_property(PropertyID::BorderTopColor, value);
  503. return;
  504. }
  505. if (property_id == CSS::PropertyID::BorderRight) {
  506. set_longhand_property(PropertyID::BorderRightWidth, value);
  507. set_longhand_property(PropertyID::BorderRightStyle, value);
  508. set_longhand_property(PropertyID::BorderRightColor, value);
  509. return;
  510. }
  511. if (property_id == CSS::PropertyID::BorderBottom) {
  512. set_longhand_property(PropertyID::BorderBottomWidth, value);
  513. set_longhand_property(PropertyID::BorderBottomStyle, value);
  514. set_longhand_property(PropertyID::BorderBottomColor, value);
  515. return;
  516. }
  517. if (property_id == CSS::PropertyID::BorderLeft) {
  518. set_longhand_property(PropertyID::BorderLeftWidth, value);
  519. set_longhand_property(PropertyID::BorderLeftStyle, value);
  520. set_longhand_property(PropertyID::BorderLeftColor, value);
  521. return;
  522. }
  523. if (property_id == CSS::PropertyID::BorderStyle) {
  524. if (value.is_value_list()) {
  525. auto const& values_list = value.as_value_list();
  526. assign_edge_values(PropertyID::BorderTopStyle, PropertyID::BorderRightStyle, PropertyID::BorderBottomStyle, PropertyID::BorderLeftStyle, values_list.values());
  527. return;
  528. }
  529. set_longhand_property(CSS::PropertyID::BorderTopStyle, value);
  530. set_longhand_property(CSS::PropertyID::BorderRightStyle, value);
  531. set_longhand_property(CSS::PropertyID::BorderBottomStyle, value);
  532. set_longhand_property(CSS::PropertyID::BorderLeftStyle, value);
  533. return;
  534. }
  535. if (property_id == CSS::PropertyID::BorderWidth) {
  536. if (value.is_value_list()) {
  537. auto const& values_list = value.as_value_list();
  538. assign_edge_values(PropertyID::BorderTopWidth, PropertyID::BorderRightWidth, PropertyID::BorderBottomWidth, PropertyID::BorderLeftWidth, values_list.values());
  539. return;
  540. }
  541. set_longhand_property(CSS::PropertyID::BorderTopWidth, value);
  542. set_longhand_property(CSS::PropertyID::BorderRightWidth, value);
  543. set_longhand_property(CSS::PropertyID::BorderBottomWidth, value);
  544. set_longhand_property(CSS::PropertyID::BorderLeftWidth, value);
  545. return;
  546. }
  547. if (property_id == CSS::PropertyID::BorderColor) {
  548. if (value.is_value_list()) {
  549. auto const& values_list = value.as_value_list();
  550. assign_edge_values(PropertyID::BorderTopColor, PropertyID::BorderRightColor, PropertyID::BorderBottomColor, PropertyID::BorderLeftColor, values_list.values());
  551. return;
  552. }
  553. set_longhand_property(CSS::PropertyID::BorderTopColor, value);
  554. set_longhand_property(CSS::PropertyID::BorderRightColor, value);
  555. set_longhand_property(CSS::PropertyID::BorderBottomColor, value);
  556. set_longhand_property(CSS::PropertyID::BorderLeftColor, value);
  557. return;
  558. }
  559. if (property_id == CSS::PropertyID::Background) {
  560. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundColor, value, document, declaration, properties_for_revert);
  561. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundImage, value, document, declaration, properties_for_revert);
  562. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundPosition, value, document, declaration, properties_for_revert);
  563. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundSize, value, document, declaration, properties_for_revert);
  564. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundRepeat, value, document, declaration, properties_for_revert);
  565. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundAttachment, value, document, declaration, properties_for_revert);
  566. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundOrigin, value, document, declaration, properties_for_revert);
  567. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundClip, value, document, declaration, properties_for_revert);
  568. return;
  569. }
  570. if (property_id == CSS::PropertyID::BackgroundPosition) {
  571. if (value.is_position()) {
  572. auto const& position = value.as_position();
  573. set_longhand_property(CSS::PropertyID::BackgroundPositionX, position.edge_x());
  574. set_longhand_property(CSS::PropertyID::BackgroundPositionY, position.edge_y());
  575. } else if (value.is_value_list()) {
  576. // Expand background-position layer list into separate lists for x and y positions:
  577. auto const& values_list = value.as_value_list();
  578. StyleValueVector x_positions {};
  579. StyleValueVector y_positions {};
  580. x_positions.ensure_capacity(values_list.size());
  581. y_positions.ensure_capacity(values_list.size());
  582. for (auto& layer : values_list.values()) {
  583. if (layer->is_position()) {
  584. auto const& position = layer->as_position();
  585. x_positions.unchecked_append(position.edge_x());
  586. y_positions.unchecked_append(position.edge_y());
  587. } else {
  588. x_positions.unchecked_append(layer);
  589. y_positions.unchecked_append(layer);
  590. }
  591. }
  592. set_longhand_property(CSS::PropertyID::BackgroundPositionX, StyleValueList::create(move(x_positions), values_list.separator()));
  593. set_longhand_property(CSS::PropertyID::BackgroundPositionY, StyleValueList::create(move(y_positions), values_list.separator()));
  594. } else {
  595. set_longhand_property(CSS::PropertyID::BackgroundPositionX, value);
  596. set_longhand_property(CSS::PropertyID::BackgroundPositionY, value);
  597. }
  598. return;
  599. }
  600. if (property_id == CSS::PropertyID::Inset) {
  601. if (value.is_value_list()) {
  602. auto const& values_list = value.as_value_list();
  603. assign_edge_values(PropertyID::Top, PropertyID::Right, PropertyID::Bottom, PropertyID::Left, values_list.values());
  604. return;
  605. }
  606. set_longhand_property(CSS::PropertyID::Top, value);
  607. set_longhand_property(CSS::PropertyID::Right, value);
  608. set_longhand_property(CSS::PropertyID::Bottom, value);
  609. set_longhand_property(CSS::PropertyID::Left, value);
  610. return;
  611. }
  612. if (property_id == CSS::PropertyID::Margin) {
  613. if (value.is_value_list()) {
  614. auto const& values_list = value.as_value_list();
  615. assign_edge_values(PropertyID::MarginTop, PropertyID::MarginRight, PropertyID::MarginBottom, PropertyID::MarginLeft, values_list.values());
  616. return;
  617. }
  618. set_longhand_property(CSS::PropertyID::MarginTop, value);
  619. set_longhand_property(CSS::PropertyID::MarginRight, value);
  620. set_longhand_property(CSS::PropertyID::MarginBottom, value);
  621. set_longhand_property(CSS::PropertyID::MarginLeft, value);
  622. return;
  623. }
  624. if (property_id == CSS::PropertyID::Padding) {
  625. if (value.is_value_list()) {
  626. auto const& values_list = value.as_value_list();
  627. assign_edge_values(PropertyID::PaddingTop, PropertyID::PaddingRight, PropertyID::PaddingBottom, PropertyID::PaddingLeft, values_list.values());
  628. return;
  629. }
  630. set_longhand_property(CSS::PropertyID::PaddingTop, value);
  631. set_longhand_property(CSS::PropertyID::PaddingRight, value);
  632. set_longhand_property(CSS::PropertyID::PaddingBottom, value);
  633. set_longhand_property(CSS::PropertyID::PaddingLeft, value);
  634. return;
  635. }
  636. if (property_id == CSS::PropertyID::ListStyle) {
  637. if (value.is_list_style()) {
  638. auto const& list_style = value.as_list_style();
  639. set_longhand_property(CSS::PropertyID::ListStylePosition, list_style.position());
  640. set_longhand_property(CSS::PropertyID::ListStyleImage, list_style.image());
  641. set_longhand_property(CSS::PropertyID::ListStyleType, list_style.style_type());
  642. return;
  643. }
  644. set_longhand_property(CSS::PropertyID::ListStylePosition, value);
  645. set_longhand_property(CSS::PropertyID::ListStyleImage, value);
  646. set_longhand_property(CSS::PropertyID::ListStyleType, value);
  647. return;
  648. }
  649. if (property_id == CSS::PropertyID::Font) {
  650. set_longhand_property(CSS::PropertyID::FontStyle, value);
  651. set_longhand_property(CSS::PropertyID::FontVariant, value);
  652. set_longhand_property(CSS::PropertyID::FontWeight, value);
  653. set_longhand_property(CSS::PropertyID::FontStretch, value);
  654. set_longhand_property(CSS::PropertyID::FontSize, value);
  655. set_longhand_property(CSS::PropertyID::LineHeight, value);
  656. set_longhand_property(CSS::PropertyID::FontFamily, value);
  657. return;
  658. }
  659. if (property_id == CSS::PropertyID::Flex) {
  660. set_longhand_property(CSS::PropertyID::FlexGrow, value);
  661. set_longhand_property(CSS::PropertyID::FlexShrink, value);
  662. set_longhand_property(CSS::PropertyID::FlexBasis, value);
  663. return;
  664. }
  665. if (property_id == CSS::PropertyID::FlexFlow) {
  666. set_longhand_property(CSS::PropertyID::FlexDirection, value);
  667. set_longhand_property(CSS::PropertyID::FlexWrap, value);
  668. return;
  669. }
  670. if (property_id == CSS::PropertyID::GridArea) {
  671. set_longhand_property(CSS::PropertyID::GridRowStart, value);
  672. set_longhand_property(CSS::PropertyID::GridColumnStart, value);
  673. set_longhand_property(CSS::PropertyID::GridRowEnd, value);
  674. set_longhand_property(CSS::PropertyID::GridColumnEnd, value);
  675. return;
  676. }
  677. if (property_id == CSS::PropertyID::GridColumn) {
  678. if (value.is_grid_track_placement_shorthand()) {
  679. auto const& shorthand = value.as_grid_track_placement_shorthand();
  680. set_longhand_property(CSS::PropertyID::GridColumnStart, shorthand.start());
  681. set_longhand_property(CSS::PropertyID::GridColumnEnd, shorthand.end());
  682. return;
  683. }
  684. set_longhand_property(CSS::PropertyID::GridColumnStart, value);
  685. set_longhand_property(CSS::PropertyID::GridColumnEnd, value);
  686. return;
  687. }
  688. if (property_id == CSS::PropertyID::GridRow) {
  689. if (value.is_grid_track_placement_shorthand()) {
  690. auto const& shorthand = value.as_grid_track_placement_shorthand();
  691. set_longhand_property(CSS::PropertyID::GridRowStart, shorthand.start());
  692. set_longhand_property(CSS::PropertyID::GridRowEnd, shorthand.end());
  693. return;
  694. }
  695. set_longhand_property(CSS::PropertyID::GridRowStart, value);
  696. set_longhand_property(CSS::PropertyID::GridRowEnd, value);
  697. return;
  698. }
  699. if (property_id == CSS::PropertyID::GridTemplate || property_id == CSS::PropertyID::Grid) {
  700. if (value.is_grid_track_size_list_shorthand()) {
  701. auto const& shorthand = value.as_grid_track_size_list_shorthand();
  702. set_longhand_property(CSS::PropertyID::GridTemplateAreas, shorthand.areas());
  703. set_longhand_property(CSS::PropertyID::GridTemplateRows, shorthand.rows());
  704. set_longhand_property(CSS::PropertyID::GridTemplateColumns, shorthand.columns());
  705. return;
  706. }
  707. set_longhand_property(CSS::PropertyID::GridTemplateAreas, value);
  708. set_longhand_property(CSS::PropertyID::GridTemplateRows, value);
  709. set_longhand_property(CSS::PropertyID::GridTemplateColumns, value);
  710. return;
  711. }
  712. if (property_id == CSS::PropertyID::Gap || property_id == CSS::PropertyID::GridGap) {
  713. if (value.is_value_list()) {
  714. auto const& values_list = value.as_value_list();
  715. set_longhand_property(CSS::PropertyID::RowGap, values_list.values()[0]);
  716. set_longhand_property(CSS::PropertyID::ColumnGap, values_list.values()[1]);
  717. return;
  718. }
  719. set_longhand_property(CSS::PropertyID::RowGap, value);
  720. set_longhand_property(CSS::PropertyID::ColumnGap, value);
  721. return;
  722. }
  723. if (property_id == CSS::PropertyID::RowGap || property_id == CSS::PropertyID::GridRowGap) {
  724. set_longhand_property(CSS::PropertyID::RowGap, value);
  725. return;
  726. }
  727. if (property_id == CSS::PropertyID::ColumnGap || property_id == CSS::PropertyID::GridColumnGap) {
  728. set_longhand_property(CSS::PropertyID::ColumnGap, value);
  729. return;
  730. }
  731. if (property_id == CSS::PropertyID::MaxInlineSize || property_id == CSS::PropertyID::MinInlineSize) {
  732. // FIXME: Use writing-mode to determine if we should set width or height.
  733. bool is_horizontal = true;
  734. if (is_horizontal) {
  735. if (property_id == CSS::PropertyID::MaxInlineSize) {
  736. set_longhand_property(CSS::PropertyID::MaxWidth, value);
  737. } else {
  738. set_longhand_property(CSS::PropertyID::MinWidth, value);
  739. }
  740. } else {
  741. if (property_id == CSS::PropertyID::MaxInlineSize) {
  742. set_longhand_property(CSS::PropertyID::MaxHeight, value);
  743. } else {
  744. set_longhand_property(CSS::PropertyID::MinHeight, value);
  745. }
  746. }
  747. return;
  748. }
  749. set_longhand_property(property_id, value);
  750. }
  751. void StyleComputer::set_all_properties(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, StyleProperties& style, StyleValue const& value, DOM::Document& document, CSS::CSSStyleDeclaration const* declaration, StyleProperties::PropertyValues const& properties_for_revert) const
  752. {
  753. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  754. auto property_id = (CSS::PropertyID)i;
  755. if (value.is_revert()) {
  756. style.m_property_values[to_underlying(property_id)] = properties_for_revert[to_underlying(property_id)];
  757. continue;
  758. }
  759. if (value.is_unset()) {
  760. if (is_inherited_property(property_id))
  761. style.m_property_values[to_underlying(property_id)] = { { get_inherit_value(document.realm(), property_id, &element, pseudo_element), nullptr } };
  762. else
  763. style.m_property_values[to_underlying(property_id)] = { { property_initial_value(document.realm(), property_id), nullptr } };
  764. continue;
  765. }
  766. NonnullRefPtr<StyleValue> property_value = value;
  767. if (property_value->is_unresolved())
  768. property_value = Parser::Parser::resolve_unresolved_style_value({}, Parser::ParsingContext { document }, element, pseudo_element, property_id, property_value->as_unresolved());
  769. if (!property_value->is_unresolved())
  770. set_property_expanding_shorthands(style, property_id, property_value, document, declaration, properties_for_revert);
  771. set_property_expanding_shorthands(style, property_id, value, document, declaration, properties_for_revert);
  772. }
  773. }
  774. void StyleComputer::cascade_declarations(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, Vector<MatchingRule> const& matching_rules, CascadeOrigin cascade_origin, Important important) const
  775. {
  776. auto properties_for_revert = style.properties();
  777. for (auto const& match : matching_rules) {
  778. for (auto const& property : verify_cast<PropertyOwningCSSStyleDeclaration>(match.rule->declaration()).properties()) {
  779. if (important != property.important)
  780. continue;
  781. if (property.property_id == CSS::PropertyID::All) {
  782. set_all_properties(element, pseudo_element, style, property.value, m_document, &match.rule->declaration(), properties_for_revert);
  783. continue;
  784. }
  785. auto property_value = property.value;
  786. if (property.value->is_unresolved())
  787. property_value = Parser::Parser::resolve_unresolved_style_value({}, Parser::ParsingContext { document() }, element, pseudo_element, property.property_id, property.value->as_unresolved());
  788. if (!property_value->is_unresolved())
  789. set_property_expanding_shorthands(style, property.property_id, property_value, m_document, &match.rule->declaration(), properties_for_revert);
  790. }
  791. }
  792. if (cascade_origin == CascadeOrigin::Author && !pseudo_element.has_value()) {
  793. if (auto const* inline_style = verify_cast<ElementInlineCSSStyleDeclaration>(element.inline_style())) {
  794. for (auto const& property : inline_style->properties()) {
  795. if (important != property.important)
  796. continue;
  797. if (property.property_id == CSS::PropertyID::All) {
  798. set_all_properties(element, pseudo_element, style, property.value, m_document, inline_style, properties_for_revert);
  799. continue;
  800. }
  801. auto property_value = property.value;
  802. if (property.value->is_unresolved())
  803. property_value = Parser::Parser::resolve_unresolved_style_value({}, Parser::ParsingContext { document() }, element, pseudo_element, property.property_id, property.value->as_unresolved());
  804. if (!property_value->is_unresolved())
  805. set_property_expanding_shorthands(style, property.property_id, property_value, m_document, inline_style, properties_for_revert);
  806. }
  807. }
  808. }
  809. }
  810. static ErrorOr<void> cascade_custom_properties(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, Vector<MatchingRule> const& matching_rules)
  811. {
  812. size_t needed_capacity = 0;
  813. for (auto const& matching_rule : matching_rules)
  814. needed_capacity += verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties().size();
  815. if (!pseudo_element.has_value()) {
  816. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style()))
  817. needed_capacity += inline_style->custom_properties().size();
  818. }
  819. HashMap<DeprecatedFlyString, StyleProperty> custom_properties;
  820. TRY(custom_properties.try_ensure_capacity(needed_capacity));
  821. for (auto const& matching_rule : matching_rules) {
  822. for (auto const& it : verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties())
  823. custom_properties.set(it.key, it.value);
  824. }
  825. if (!pseudo_element.has_value()) {
  826. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style())) {
  827. for (auto const& it : inline_style->custom_properties())
  828. custom_properties.set(it.key, it.value);
  829. }
  830. }
  831. element.set_custom_properties(pseudo_element, move(custom_properties));
  832. return {};
  833. }
  834. StyleComputer::AnimationStepTransition StyleComputer::Animation::step(CSS::Time const& time_step)
  835. {
  836. auto delay_ms = remaining_delay.to_milliseconds();
  837. auto time_step_ms = time_step.to_milliseconds();
  838. if (delay_ms > time_step_ms) {
  839. remaining_delay = CSS::Time { static_cast<float>(delay_ms - time_step_ms), CSS::Time::Type::Ms };
  840. return AnimationStepTransition::NoTransition;
  841. }
  842. remaining_delay = CSS::Time { 0, CSS::Time::Type::Ms };
  843. time_step_ms -= delay_ms;
  844. // "auto": For time-driven animations, equivalent to 0s.
  845. // https://www.w3.org/TR/2023/WD-css-animations-2-20230602/#valdef-animation-duration-auto
  846. auto used_duration = duration.value_or(CSS::Time { 0, CSS::Time::Type::S });
  847. auto added_progress = time_step_ms / used_duration.to_milliseconds();
  848. auto new_progress = progress.as_fraction() + added_progress;
  849. auto changed_iteration = false;
  850. if (new_progress >= 1) {
  851. if (iteration_count.has_value()) {
  852. if (iteration_count.value() <= 1) {
  853. progress = CSS::Percentage(100);
  854. return AnimationStepTransition::ActiveToAfter;
  855. }
  856. --iteration_count.value();
  857. changed_iteration = true;
  858. }
  859. ++current_iteration;
  860. new_progress = 0;
  861. }
  862. progress = CSS::Percentage(new_progress * 100);
  863. if (changed_iteration)
  864. return AnimationStepTransition::ActiveToActiveChangingTheIteration;
  865. return AnimationStepTransition::AfterToActive;
  866. }
  867. static ErrorOr<NonnullRefPtr<StyleValue>> interpolate_property(StyleValue const& from, StyleValue const& to, float delta)
  868. {
  869. if (from.type() != to.type()) {
  870. if (delta > 0.999f)
  871. return to;
  872. return from;
  873. }
  874. auto interpolate_raw = [delta = static_cast<double>(delta)](auto from, auto to) {
  875. return static_cast<RemoveCVReference<decltype(from)>>(static_cast<double>(from) + static_cast<double>(to - from) * delta);
  876. };
  877. switch (from.type()) {
  878. case StyleValue::Type::Angle:
  879. return AngleStyleValue::create(Angle::make_degrees(interpolate_raw(from.as_angle().angle().to_degrees(), to.as_angle().angle().to_degrees())));
  880. case StyleValue::Type::Color: {
  881. auto from_color = from.as_color().color();
  882. auto to_color = to.as_color().color();
  883. auto from_hsv = from_color.to_hsv();
  884. auto to_hsv = to_color.to_hsv();
  885. auto color = Color::from_hsv(
  886. interpolate_raw(from_hsv.hue, to_hsv.hue),
  887. interpolate_raw(from_hsv.saturation, to_hsv.saturation),
  888. interpolate_raw(from_hsv.value, to_hsv.value));
  889. color.set_alpha(interpolate_raw(from_color.alpha(), to_color.alpha()));
  890. return ColorStyleValue::create(color);
  891. }
  892. case StyleValue::Type::Integer:
  893. return IntegerStyleValue::create(interpolate_raw(from.as_integer().integer(), to.as_integer().integer()));
  894. case StyleValue::Type::Length: {
  895. auto& from_length = from.as_length().length();
  896. auto& to_length = to.as_length().length();
  897. return LengthStyleValue::create(Length(interpolate_raw(from_length.raw_value(), to_length.raw_value()), from_length.type()));
  898. }
  899. case StyleValue::Type::Number:
  900. return NumberStyleValue::create(interpolate_raw(from.as_number().number(), to.as_number().number()));
  901. case StyleValue::Type::Percentage:
  902. return PercentageStyleValue::create(Percentage(interpolate_raw(from.as_percentage().percentage().value(), to.as_percentage().percentage().value())));
  903. case StyleValue::Type::Position: {
  904. auto& from_position = from.as_position();
  905. auto& to_position = to.as_position();
  906. return PositionStyleValue::create(
  907. TRY(interpolate_property(from_position.edge_x(), to_position.edge_x(), delta)),
  908. TRY(interpolate_property(from_position.edge_y(), to_position.edge_y(), delta)));
  909. }
  910. case StyleValue::Type::Rect: {
  911. auto from_rect = from.as_rect().rect();
  912. auto to_rect = to.as_rect().rect();
  913. return RectStyleValue::create({
  914. Length(interpolate_raw(from_rect.top_edge.raw_value(), to_rect.top_edge.raw_value()), from_rect.top_edge.type()),
  915. Length(interpolate_raw(from_rect.right_edge.raw_value(), to_rect.right_edge.raw_value()), from_rect.right_edge.type()),
  916. Length(interpolate_raw(from_rect.bottom_edge.raw_value(), to_rect.bottom_edge.raw_value()), from_rect.bottom_edge.type()),
  917. Length(interpolate_raw(from_rect.left_edge.raw_value(), to_rect.left_edge.raw_value()), from_rect.left_edge.type()),
  918. });
  919. }
  920. case StyleValue::Type::Transformation: {
  921. auto& from_transform = from.as_transformation();
  922. auto& to_transform = to.as_transformation();
  923. if (from_transform.transform_function() != to_transform.transform_function())
  924. return from;
  925. auto from_input_values = from_transform.values();
  926. auto to_input_values = to_transform.values();
  927. if (from_input_values.size() != to_input_values.size())
  928. return from;
  929. StyleValueVector interpolated_values;
  930. interpolated_values.ensure_capacity(from_input_values.size());
  931. for (size_t i = 0; i < from_input_values.size(); ++i)
  932. interpolated_values.append(TRY(interpolate_property(*from_input_values[i], *to_input_values[i], delta)));
  933. return TransformationStyleValue::create(from_transform.transform_function(), move(interpolated_values));
  934. }
  935. case StyleValue::Type::ValueList: {
  936. auto& from_list = from.as_value_list();
  937. auto& to_list = to.as_value_list();
  938. if (from_list.size() != to_list.size())
  939. return from;
  940. StyleValueVector interpolated_values;
  941. interpolated_values.ensure_capacity(from_list.size());
  942. for (size_t i = 0; i < from_list.size(); ++i)
  943. interpolated_values.append(TRY(interpolate_property(from_list.values()[i], to_list.values()[i], delta)));
  944. return StyleValueList::create(move(interpolated_values), from_list.separator());
  945. }
  946. default:
  947. return from;
  948. }
  949. }
  950. bool StyleComputer::Animation::is_animating_backwards() const
  951. {
  952. return (direction == CSS::AnimationDirection::AlternateReverse && current_iteration % 2 == 1)
  953. || (direction == CSS::AnimationDirection::Alternate && current_iteration % 2 == 0)
  954. || direction == CSS::AnimationDirection::Reverse;
  955. }
  956. ErrorOr<void> StyleComputer::Animation::collect_into(StyleProperties& style_properties, RuleCache const& rule_cache) const
  957. {
  958. if (remaining_delay.to_milliseconds() != 0) {
  959. // If the fill mode is backwards or both, we'll pretend that the animation is started, but stuck at progress 0
  960. if (fill_mode != CSS::AnimationFillMode::Backwards && fill_mode != CSS::AnimationFillMode::Both)
  961. return {};
  962. }
  963. auto matching_keyframes = rule_cache.rules_by_animation_keyframes.get(name);
  964. if (!matching_keyframes.has_value())
  965. return {};
  966. auto& keyframes = matching_keyframes.value()->keyframes_by_key;
  967. auto output_progress = compute_output_progress(progress.as_fraction()) * 100.f;
  968. auto is_backwards = is_animating_backwards();
  969. auto key = static_cast<u64>(output_progress * AnimationKeyFrameKeyScaleFactor);
  970. auto matching_keyframe_it = is_backwards ? keyframes.find_smallest_not_below_iterator(key) : keyframes.find_largest_not_above_iterator(key);
  971. if (matching_keyframe_it.is_end()) {
  972. if constexpr (LIBWEB_CSS_ANIMATION_DEBUG) {
  973. dbgln(" Did not find any start keyframe for the current state ({}) :(", key);
  974. dbgln(" (have {} keyframes)", keyframes.size());
  975. for (auto it = keyframes.begin(); it != keyframes.end(); ++it)
  976. dbgln(" - {}", it.key());
  977. }
  978. return {};
  979. }
  980. auto keyframe_start = matching_keyframe_it.key();
  981. auto keyframe_values = *matching_keyframe_it;
  982. auto initial_keyframe_it = matching_keyframe_it;
  983. auto keyframe_end_it = is_backwards ? --matching_keyframe_it : ++matching_keyframe_it;
  984. if (keyframe_end_it.is_end())
  985. keyframe_end_it = initial_keyframe_it;
  986. auto keyframe_end = keyframe_end_it.key();
  987. auto keyframe_end_values = *keyframe_end_it;
  988. auto progress_in_keyframe = [&] {
  989. if (keyframe_start == keyframe_end)
  990. return is_backwards ? 1.f : 0.f;
  991. return is_backwards
  992. ? static_cast<float>(keyframe_start - key) / static_cast<float>(keyframe_start - keyframe_end)
  993. : static_cast<float>(key - keyframe_start) / static_cast<float>(keyframe_end - keyframe_start);
  994. }();
  995. auto valid_properties = 0;
  996. for (auto const& property : keyframe_values.resolved_properties) {
  997. if (property.has<Empty>())
  998. continue;
  999. valid_properties++;
  1000. }
  1001. dbgln_if(LIBWEB_CSS_ANIMATION_DEBUG, "Animation {} contains {} properties to interpolate, progress = {}%", name, valid_properties, progress_in_keyframe * 100);
  1002. if (fill_mode == CSS::AnimationFillMode::Forwards || fill_mode == CSS::AnimationFillMode::Both) {
  1003. if (!active_state_if_fill_forward)
  1004. active_state_if_fill_forward = make<AnimationStateSnapshot>();
  1005. }
  1006. UnderlyingType<PropertyID> property_id_value = 0;
  1007. for (auto const& property : keyframe_values.resolved_properties) {
  1008. auto property_id = static_cast<PropertyID>(property_id_value++);
  1009. if (property.has<Empty>())
  1010. continue;
  1011. auto resolve_property = [&](auto& property) {
  1012. return property.visit(
  1013. [](Empty) -> RefPtr<StyleValue const> { VERIFY_NOT_REACHED(); },
  1014. [&](AnimationKeyFrameSet::ResolvedKeyFrame::UseInitial) {
  1015. if (auto value = initial_state.state[to_underlying(property_id)])
  1016. return value;
  1017. auto value = style_properties.maybe_null_property(property_id);
  1018. initial_state.state[to_underlying(property_id)] = value;
  1019. return value;
  1020. },
  1021. [&](RefPtr<StyleValue const> value) { return value; });
  1022. };
  1023. auto resolved_start_property = resolve_property(property);
  1024. auto const& end_property = keyframe_end_values.resolved_properties[to_underlying(property_id)];
  1025. if (end_property.has<Empty>()) {
  1026. if (resolved_start_property) {
  1027. style_properties.set_property(property_id, resolved_start_property.release_nonnull());
  1028. dbgln_if(LIBWEB_CSS_ANIMATION_DEBUG, "No end property for property {}, using {}", string_from_property_id(property_id), resolved_start_property->to_string());
  1029. }
  1030. continue;
  1031. }
  1032. auto resolved_end_property = resolve_property(end_property);
  1033. if (!resolved_start_property || !resolved_end_property)
  1034. continue;
  1035. auto start = resolved_start_property.release_nonnull();
  1036. auto end = resolved_end_property.release_nonnull();
  1037. auto next_value = TRY(interpolate_property(*start, *end, progress_in_keyframe));
  1038. dbgln_if(LIBWEB_CSS_ANIMATION_DEBUG, "Interpolated value for property {} at {}: {} -> {} = {}", string_from_property_id(property_id), progress_in_keyframe, start->to_string(), end->to_string(), next_value->to_string());
  1039. style_properties.set_property(property_id, next_value);
  1040. if (active_state_if_fill_forward)
  1041. active_state_if_fill_forward->state[to_underlying(property_id)] = next_value;
  1042. }
  1043. return {};
  1044. }
  1045. bool StyleComputer::Animation::is_done() const
  1046. {
  1047. return progress.as_fraction() >= 0.9999 && iteration_count.has_value() && iteration_count.value() == 0;
  1048. }
  1049. // NOTE: Magic values from <https://www.w3.org/TR/css-easing-1/#valdef-cubic-bezier-easing-function-ease>
  1050. static auto ease_timing_function = StyleComputer::AnimationTiming::CubicBezier { 0.25, 0.1, 0.25, 1.0 };
  1051. static auto ease_in_timing_function = StyleComputer::AnimationTiming::CubicBezier { 0.42, 0.0, 1.0, 1.0 };
  1052. static auto ease_out_timing_function = StyleComputer::AnimationTiming::CubicBezier { 0.0, 0.0, 0.58, 1.0 };
  1053. static auto ease_in_out_timing_function = StyleComputer::AnimationTiming::CubicBezier { 0.42, 0.0, 0.58, 1.0 };
  1054. float StyleComputer::Animation::compute_output_progress(float input_progress) const
  1055. {
  1056. auto output_progress = input_progress;
  1057. auto going_forwards = true;
  1058. switch (direction) {
  1059. case AnimationDirection::Alternate:
  1060. if (current_iteration % 2 == 0) {
  1061. output_progress = 1.0f - output_progress;
  1062. going_forwards = false;
  1063. }
  1064. break;
  1065. case AnimationDirection::AlternateReverse:
  1066. if (current_iteration % 2 == 1) {
  1067. output_progress = 1.0f - output_progress;
  1068. going_forwards = false;
  1069. }
  1070. break;
  1071. case AnimationDirection::Normal:
  1072. break;
  1073. case AnimationDirection::Reverse:
  1074. output_progress = 1.0f - output_progress;
  1075. going_forwards = false;
  1076. break;
  1077. }
  1078. if (remaining_delay.to_milliseconds() != 0)
  1079. return output_progress;
  1080. return timing_function.timing_function.visit(
  1081. [&](AnimationTiming::Linear) { return output_progress; },
  1082. [&](AnimationTiming::Steps const& steps) {
  1083. auto before_flag = (current_state == AnimationState::Before && going_forwards) || (current_state == AnimationState::After && !going_forwards);
  1084. auto progress_step = output_progress * static_cast<float>(steps.number_of_steps);
  1085. auto current_step = floorf(progress_step);
  1086. if (steps.jump_at_start)
  1087. current_step += 1;
  1088. if (before_flag && truncf(progress_step) == progress_step)
  1089. current_step -= 1;
  1090. if (output_progress >= 0 && current_step < 0)
  1091. current_step = 0;
  1092. size_t jumps;
  1093. if (steps.jump_at_start ^ steps.jump_at_end)
  1094. jumps = steps.number_of_steps;
  1095. else if (steps.jump_at_start && steps.jump_at_end)
  1096. jumps = steps.number_of_steps + 1;
  1097. else
  1098. jumps = steps.number_of_steps - 1;
  1099. if (output_progress <= 1 && current_step > static_cast<float>(jumps))
  1100. current_step = static_cast<float>(jumps);
  1101. return current_step / static_cast<float>(steps.number_of_steps);
  1102. },
  1103. [&](AnimationTiming::CubicBezier const& bezier) {
  1104. // Special cases first:
  1105. if (bezier == AnimationTiming::CubicBezier { 0.0, 0.0, 1.0, 1.0 })
  1106. return output_progress;
  1107. // FIXME: This is quite inefficient on memory and CPU, find a better way to do this.
  1108. auto sample = bezier.sample_around(static_cast<double>(output_progress));
  1109. return static_cast<float>(sample.y);
  1110. });
  1111. }
  1112. static double cubic_bezier_at(double x1, double x2, double t)
  1113. {
  1114. auto a = 1.0 - 3.0 * x2 + 3.0 * x1;
  1115. auto b = 3.0 * x2 - 6.0 * x1;
  1116. auto c = 3.0 * x1;
  1117. auto t2 = t * t;
  1118. auto t3 = t2 * t;
  1119. return (a * t3) + (b * t2) + (c * t);
  1120. }
  1121. StyleComputer::AnimationTiming::CubicBezier::CachedSample StyleComputer::AnimationTiming::CubicBezier::sample_around(double x) const
  1122. {
  1123. x = clamp(x, 0, 1);
  1124. auto solve = [&](auto t) {
  1125. auto x = cubic_bezier_at(x1, x2, t);
  1126. auto y = cubic_bezier_at(y1, y2, t);
  1127. return CachedSample { x, y, t };
  1128. };
  1129. if (m_cached_x_samples.is_empty())
  1130. m_cached_x_samples.append(solve(0.));
  1131. size_t nearby_index = 0;
  1132. if (auto found = binary_search(m_cached_x_samples, x, &nearby_index, [](auto x, auto& sample) {
  1133. if (x > sample.x)
  1134. return 1;
  1135. if (x < sample.x)
  1136. return -1;
  1137. return 0;
  1138. }))
  1139. return *found;
  1140. if (nearby_index == m_cached_x_samples.size() || nearby_index + 1 == m_cached_x_samples.size()) {
  1141. // Produce more samples until we have enough.
  1142. auto last_t = m_cached_x_samples.is_empty() ? 0 : m_cached_x_samples.last().t;
  1143. auto last_x = m_cached_x_samples.is_empty() ? 0 : m_cached_x_samples.last().x;
  1144. while (last_x <= x) {
  1145. last_t += 1. / 60.;
  1146. auto solution = solve(last_t);
  1147. m_cached_x_samples.append(solution);
  1148. last_x = solution.x;
  1149. }
  1150. if (auto found = binary_search(m_cached_x_samples, x, &nearby_index, [](auto x, auto& sample) {
  1151. if (x > sample.x)
  1152. return 1;
  1153. if (x < sample.x)
  1154. return -1;
  1155. return 0;
  1156. }))
  1157. return *found;
  1158. }
  1159. // We have two samples on either side of the x value we want, so we can linearly interpolate between them.
  1160. auto& sample1 = m_cached_x_samples[nearby_index];
  1161. auto& sample2 = m_cached_x_samples[nearby_index + 1];
  1162. auto factor = (x - sample1.x) / (sample2.x - sample1.x);
  1163. return CachedSample {
  1164. x,
  1165. clamp(sample1.y + factor * (sample2.y - sample1.y), 0, 1),
  1166. sample1.t + factor * (sample2.t - sample1.t),
  1167. };
  1168. }
  1169. void StyleComputer::ensure_animation_timer() const
  1170. {
  1171. constexpr static auto timer_delay_ms = 1000 / 60;
  1172. if (!m_animation_driver_timer) {
  1173. m_animation_driver_timer = Platform::Timer::create_repeating(timer_delay_ms, [this] {
  1174. // If we run out of animations, stop the timer - it'll turn back on the next time we have an active animation.
  1175. if (m_active_animations.is_empty()) {
  1176. m_animation_driver_timer->stop();
  1177. return;
  1178. }
  1179. HashTable<AnimationKey> animations_to_remove;
  1180. HashTable<DOM::Element*> owning_elements_to_invalidate;
  1181. for (auto& it : m_active_animations) {
  1182. if (!it.value->owning_element) {
  1183. // The element disappeared since we last ran, just discard the animation.
  1184. animations_to_remove.set(it.key);
  1185. continue;
  1186. }
  1187. auto transition = it.value->step(CSS::Time { timer_delay_ms, CSS::Time::Type::Ms });
  1188. owning_elements_to_invalidate.set(it.value->owning_element);
  1189. switch (transition) {
  1190. case AnimationStepTransition::NoTransition:
  1191. break;
  1192. case AnimationStepTransition::IdleOrBeforeToActive:
  1193. // FIXME: Dispatch `animationstart`.
  1194. break;
  1195. case AnimationStepTransition::IdleOrBeforeToAfter:
  1196. // FIXME: Dispatch `animationstart` then `animationend`.
  1197. m_finished_animations.set(it.key, move(it.value->active_state_if_fill_forward));
  1198. break;
  1199. case AnimationStepTransition::ActiveToBefore:
  1200. // FIXME: Dispatch `animationend`.
  1201. m_finished_animations.set(it.key, move(it.value->active_state_if_fill_forward));
  1202. break;
  1203. case AnimationStepTransition::ActiveToActiveChangingTheIteration:
  1204. // FIXME: Dispatch `animationiteration`.
  1205. break;
  1206. case AnimationStepTransition::ActiveToAfter:
  1207. // FIXME: Dispatch `animationend`.
  1208. m_finished_animations.set(it.key, move(it.value->active_state_if_fill_forward));
  1209. break;
  1210. case AnimationStepTransition::AfterToActive:
  1211. // FIXME: Dispatch `animationstart`.
  1212. break;
  1213. case AnimationStepTransition::AfterToBefore:
  1214. // FIXME: Dispatch `animationstart` then `animationend`.
  1215. m_finished_animations.set(it.key, move(it.value->active_state_if_fill_forward));
  1216. break;
  1217. case AnimationStepTransition::Cancelled:
  1218. // FIXME: Dispatch `animationcancel`.
  1219. m_finished_animations.set(it.key, nullptr);
  1220. break;
  1221. }
  1222. if (it.value->is_done())
  1223. animations_to_remove.set(it.key);
  1224. }
  1225. for (auto key : animations_to_remove)
  1226. m_active_animations.remove(key);
  1227. for (auto* element : owning_elements_to_invalidate)
  1228. element->set_needs_style_update(true);
  1229. });
  1230. }
  1231. m_animation_driver_timer->start();
  1232. }
  1233. // https://www.w3.org/TR/css-cascade/#cascading
  1234. ErrorOr<void> StyleComputer::compute_cascaded_values(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, bool& did_match_any_pseudo_element_rules, ComputeStyleMode mode) const
  1235. {
  1236. // First, we collect all the CSS rules whose selectors match `element`:
  1237. MatchingRuleSet matching_rule_set;
  1238. matching_rule_set.user_agent_rules = collect_matching_rules(element, CascadeOrigin::UserAgent, pseudo_element);
  1239. sort_matching_rules(matching_rule_set.user_agent_rules);
  1240. matching_rule_set.user_rules = collect_matching_rules(element, CascadeOrigin::User, pseudo_element);
  1241. sort_matching_rules(matching_rule_set.user_rules);
  1242. matching_rule_set.author_rules = collect_matching_rules(element, CascadeOrigin::Author, pseudo_element);
  1243. sort_matching_rules(matching_rule_set.author_rules);
  1244. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded) {
  1245. VERIFY(pseudo_element.has_value());
  1246. if (matching_rule_set.author_rules.is_empty() && matching_rule_set.user_rules.is_empty() && matching_rule_set.user_agent_rules.is_empty()) {
  1247. did_match_any_pseudo_element_rules = false;
  1248. return {};
  1249. }
  1250. did_match_any_pseudo_element_rules = true;
  1251. }
  1252. // Then we resolve all the CSS custom pr`operties ("variables") for this element:
  1253. TRY(cascade_custom_properties(element, pseudo_element, matching_rule_set.author_rules));
  1254. // Then we apply the declarations from the matched rules in cascade order:
  1255. // Normal user agent declarations
  1256. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::No);
  1257. // Normal user declarations
  1258. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_rules, CascadeOrigin::User, Important::No);
  1259. // Author presentational hints (NOTE: The spec doesn't say exactly how to prioritize these.)
  1260. if (!pseudo_element.has_value()) {
  1261. element.apply_presentational_hints(style);
  1262. // SVG presentation attributes are parsed as CSS values, so we need to handle potential custom properties here.
  1263. if (element.is_svg_element()) {
  1264. // FIXME: This is not very efficient, we should only resolve the custom properties that are actually used.
  1265. for (auto i = to_underlying(CSS::first_property_id); i <= to_underlying(CSS::last_property_id); ++i) {
  1266. auto property_id = (CSS::PropertyID)i;
  1267. auto& property = style.m_property_values[i];
  1268. if (property.has_value() && property->style->is_unresolved())
  1269. property->style = Parser::Parser::resolve_unresolved_style_value({}, Parser::ParsingContext { document() }, element, pseudo_element, property_id, property->style->as_unresolved());
  1270. }
  1271. }
  1272. }
  1273. // Normal author declarations
  1274. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::No);
  1275. // Animation declarations [css-animations-2]
  1276. auto get_animation_name = [&]() -> Optional<String> {
  1277. auto animation_name = style.maybe_null_property(PropertyID::AnimationName);
  1278. if (animation_name.is_null())
  1279. return OptionalNone {};
  1280. if (animation_name->is_string())
  1281. return animation_name->as_string().string_value();
  1282. return animation_name->to_string();
  1283. };
  1284. if (auto animation_name = get_animation_name(); animation_name.has_value()) {
  1285. if (auto source_declaration = style.property_source_declaration(PropertyID::AnimationName)) {
  1286. AnimationKey animation_key {
  1287. .source_declaration = source_declaration,
  1288. .element = &element,
  1289. };
  1290. if (auto finished_state = m_finished_animations.get(animation_key); finished_state.has_value()) {
  1291. // We've already finished going through this animation, so drop it from the active animations.
  1292. m_active_animations.remove(animation_key);
  1293. // If the animation's fill mode was set to forwards/both, we need to collect and use the final frame's styles.
  1294. if (*finished_state) {
  1295. auto& state = (*finished_state)->state;
  1296. for (size_t property_id_value = 0; property_id_value < state.size(); ++property_id_value) {
  1297. if (auto& property_value = state[property_id_value])
  1298. style.set_property(static_cast<PropertyID>(property_id_value), *property_value);
  1299. }
  1300. }
  1301. } else if (!animation_name->is_empty()) {
  1302. auto active_animation = m_active_animations.get(animation_key);
  1303. if (!active_animation.has_value()) {
  1304. // New animation!
  1305. Optional<CSS::Time> duration;
  1306. if (auto duration_value = style.maybe_null_property(PropertyID::AnimationDuration); duration_value) {
  1307. if (duration_value->is_time()) {
  1308. duration = duration_value->as_time().time();
  1309. } else if (duration_value->is_identifier() && duration_value->as_identifier().id() == ValueID::Auto) {
  1310. // We use empty optional to represent "auto".
  1311. duration = {};
  1312. }
  1313. }
  1314. CSS::Time delay { 0, CSS::Time::Type::S };
  1315. if (auto delay_value = style.maybe_null_property(PropertyID::AnimationDelay); delay_value && delay_value->is_time())
  1316. delay = delay_value->as_time().time();
  1317. Optional<size_t> iteration_count = 1;
  1318. if (auto iteration_count_value = style.maybe_null_property(PropertyID::AnimationIterationCount); iteration_count_value) {
  1319. if (iteration_count_value->is_identifier() && iteration_count_value->to_identifier() == ValueID::Infinite)
  1320. iteration_count = {};
  1321. else if (iteration_count_value->is_number())
  1322. iteration_count = static_cast<size_t>(iteration_count_value->as_number().number());
  1323. }
  1324. CSS::AnimationFillMode fill_mode { CSS::AnimationFillMode::None };
  1325. if (auto fill_mode_property = style.maybe_null_property(PropertyID::AnimationFillMode); fill_mode_property && fill_mode_property->is_identifier()) {
  1326. if (auto fill_mode_value = value_id_to_animation_fill_mode(fill_mode_property->to_identifier()); fill_mode_value.has_value())
  1327. fill_mode = *fill_mode_value;
  1328. }
  1329. CSS::AnimationDirection direction { CSS::AnimationDirection::Normal };
  1330. if (auto direction_property = style.maybe_null_property(PropertyID::AnimationDirection); direction_property && direction_property->is_identifier()) {
  1331. if (auto direction_value = value_id_to_animation_direction(direction_property->to_identifier()); direction_value.has_value())
  1332. direction = *direction_value;
  1333. }
  1334. AnimationTiming timing_function { ease_timing_function };
  1335. if (auto timing_property = style.maybe_null_property(PropertyID::AnimationTimingFunction); timing_property && timing_property->is_easing()) {
  1336. auto& easing_value = timing_property->as_easing();
  1337. switch (easing_value.easing_function()) {
  1338. case EasingFunction::Linear:
  1339. timing_function = AnimationTiming { AnimationTiming::Linear {} };
  1340. break;
  1341. case EasingFunction::Ease:
  1342. timing_function = AnimationTiming { ease_timing_function };
  1343. break;
  1344. case EasingFunction::EaseIn:
  1345. timing_function = AnimationTiming { ease_in_timing_function };
  1346. break;
  1347. case EasingFunction::EaseOut:
  1348. timing_function = AnimationTiming { ease_out_timing_function };
  1349. break;
  1350. case EasingFunction::EaseInOut:
  1351. timing_function = AnimationTiming { ease_in_out_timing_function };
  1352. break;
  1353. case EasingFunction::CubicBezier: {
  1354. auto values = easing_value.values();
  1355. timing_function = AnimationTiming {
  1356. AnimationTiming::CubicBezier {
  1357. values[0]->as_number().number(),
  1358. values[1]->as_number().number(),
  1359. values[2]->as_number().number(),
  1360. values[3]->as_number().number(),
  1361. },
  1362. };
  1363. break;
  1364. }
  1365. case EasingFunction::Steps: {
  1366. auto values = easing_value.values();
  1367. auto jump_at_start = false;
  1368. auto jump_at_end = true;
  1369. if (values.size() > 1) {
  1370. auto identifier = values[1]->to_identifier();
  1371. switch (identifier) {
  1372. case ValueID::JumpStart:
  1373. case ValueID::Start:
  1374. jump_at_start = true;
  1375. jump_at_end = false;
  1376. break;
  1377. case ValueID::JumpEnd:
  1378. case ValueID::End:
  1379. jump_at_start = false;
  1380. jump_at_end = true;
  1381. break;
  1382. case ValueID::JumpNone:
  1383. jump_at_start = false;
  1384. jump_at_end = false;
  1385. break;
  1386. default:
  1387. break;
  1388. }
  1389. }
  1390. timing_function = AnimationTiming { AnimationTiming::Steps {
  1391. .number_of_steps = static_cast<size_t>(max(values[0]->as_integer().integer(), !(jump_at_end && jump_at_start) ? 1 : 0)),
  1392. .jump_at_start = jump_at_start,
  1393. .jump_at_end = jump_at_end,
  1394. } };
  1395. break;
  1396. }
  1397. case EasingFunction::StepEnd:
  1398. timing_function = AnimationTiming { AnimationTiming::Steps {
  1399. .number_of_steps = 1,
  1400. .jump_at_start = false,
  1401. .jump_at_end = true,
  1402. } };
  1403. break;
  1404. case EasingFunction::StepStart:
  1405. timing_function = AnimationTiming { AnimationTiming::Steps {
  1406. .number_of_steps = 1,
  1407. .jump_at_start = true,
  1408. .jump_at_end = false,
  1409. } };
  1410. break;
  1411. }
  1412. }
  1413. auto animation = make<Animation>(Animation {
  1414. .name = animation_name.release_value(),
  1415. .duration = duration,
  1416. .delay = delay,
  1417. .iteration_count = iteration_count,
  1418. .timing_function = timing_function,
  1419. .direction = direction,
  1420. .fill_mode = fill_mode,
  1421. .owning_element = TRY(element.try_make_weak_ptr<DOM::Element>()),
  1422. .progress = CSS::Percentage(0),
  1423. .remaining_delay = delay,
  1424. });
  1425. active_animation = animation;
  1426. m_active_animations.set(animation_key, move(animation));
  1427. }
  1428. TRY((*active_animation)->collect_into(style, rule_cache_for_cascade_origin(CascadeOrigin::Author)));
  1429. } else {
  1430. m_active_animations.remove(animation_key);
  1431. }
  1432. }
  1433. if (!m_active_animations.is_empty())
  1434. ensure_animation_timer();
  1435. }
  1436. // Important author declarations
  1437. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::Yes);
  1438. // Important user declarations
  1439. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_rules, CascadeOrigin::User, Important::Yes);
  1440. // Important user agent declarations
  1441. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::Yes);
  1442. // FIXME: Transition declarations [css-transitions-1]
  1443. return {};
  1444. }
  1445. DOM::Element const* element_to_inherit_style_from(DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element)
  1446. {
  1447. // Pseudo-elements treat their originating element as their parent.
  1448. DOM::Element const* parent_element = nullptr;
  1449. if (pseudo_element.has_value()) {
  1450. parent_element = element;
  1451. } else if (element) {
  1452. parent_element = element->parent_or_shadow_host_element();
  1453. }
  1454. return parent_element;
  1455. }
  1456. NonnullRefPtr<StyleValue const> get_inherit_value(JS::Realm& initial_value_context_realm, CSS::PropertyID property_id, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element)
  1457. {
  1458. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1459. if (!parent_element || !parent_element->computed_css_values())
  1460. return property_initial_value(initial_value_context_realm, property_id);
  1461. return parent_element->computed_css_values()->property(property_id);
  1462. }
  1463. void StyleComputer::compute_defaulted_property_value(StyleProperties& style, DOM::Element const* element, CSS::PropertyID property_id, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1464. {
  1465. // FIXME: If we don't know the correct initial value for a property, we fall back to InitialStyleValue.
  1466. auto& value_slot = style.m_property_values[to_underlying(property_id)];
  1467. if (!value_slot.has_value()) {
  1468. if (is_inherited_property(property_id))
  1469. style.m_property_values[to_underlying(property_id)] = { { get_inherit_value(document().realm(), property_id, element, pseudo_element), nullptr } };
  1470. else
  1471. style.m_property_values[to_underlying(property_id)] = { { property_initial_value(document().realm(), property_id), nullptr } };
  1472. return;
  1473. }
  1474. if (value_slot->style->is_initial()) {
  1475. value_slot->style = property_initial_value(document().realm(), property_id);
  1476. return;
  1477. }
  1478. if (value_slot->style->is_inherit()) {
  1479. value_slot->style = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  1480. return;
  1481. }
  1482. // https://www.w3.org/TR/css-cascade-4/#inherit-initial
  1483. // If the cascaded value of a property is the unset keyword,
  1484. if (value_slot->style->is_unset()) {
  1485. if (is_inherited_property(property_id)) {
  1486. // then if it is an inherited property, this is treated as inherit,
  1487. value_slot->style = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  1488. } else {
  1489. // and if it is not, this is treated as initial.
  1490. value_slot->style = property_initial_value(document().realm(), property_id);
  1491. }
  1492. }
  1493. }
  1494. // https://www.w3.org/TR/css-cascade/#defaulting
  1495. void StyleComputer::compute_defaulted_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1496. {
  1497. // Walk the list of all known CSS properties and:
  1498. // - Add them to `style` if they are missing.
  1499. // - Resolve `inherit` and `initial` as needed.
  1500. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  1501. auto property_id = (CSS::PropertyID)i;
  1502. compute_defaulted_property_value(style, element, property_id, pseudo_element);
  1503. }
  1504. // https://www.w3.org/TR/css-color-4/#resolving-other-colors
  1505. // In the color property, the used value of currentcolor is the inherited value.
  1506. auto color = style.property(CSS::PropertyID::Color);
  1507. if (color->to_identifier() == CSS::ValueID::Currentcolor) {
  1508. color = get_inherit_value(document().realm(), CSS::PropertyID::Color, element, pseudo_element);
  1509. style.set_property(CSS::PropertyID::Color, color);
  1510. }
  1511. }
  1512. Length::FontMetrics StyleComputer::calculate_root_element_font_metrics(StyleProperties const& style) const
  1513. {
  1514. auto root_value = style.property(CSS::PropertyID::FontSize);
  1515. auto font_pixel_metrics = style.computed_font().pixel_metrics();
  1516. Length::FontMetrics font_metrics { m_default_font_metrics.font_size, font_pixel_metrics, CSSPixels::nearest_value_for(font_pixel_metrics.line_spacing()) };
  1517. font_metrics.font_size = root_value->as_length().length().to_px(viewport_rect(), font_metrics, font_metrics);
  1518. font_metrics.line_height = style.line_height(viewport_rect(), font_metrics, font_metrics);
  1519. return font_metrics;
  1520. }
  1521. RefPtr<Gfx::Font const> StyleComputer::find_matching_font_weight_ascending(Vector<MatchingFontCandidate> const& candidates, int target_weight, float font_size_in_pt, bool inclusive)
  1522. {
  1523. using Fn = AK::Function<bool(MatchingFontCandidate const&)>;
  1524. auto pred = inclusive ? Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight >= target_weight; })
  1525. : Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight > target_weight; });
  1526. auto it = find_if(candidates.begin(), candidates.end(), pred);
  1527. for (; it != candidates.end(); ++it) {
  1528. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1529. return found_font;
  1530. }
  1531. return {};
  1532. }
  1533. RefPtr<Gfx::Font const> StyleComputer::find_matching_font_weight_descending(Vector<MatchingFontCandidate> const& candidates, int target_weight, float font_size_in_pt, bool inclusive)
  1534. {
  1535. using Fn = AK::Function<bool(MatchingFontCandidate const&)>;
  1536. auto pred = inclusive ? Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight <= target_weight; })
  1537. : Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight < target_weight; });
  1538. auto it = find_if(candidates.rbegin(), candidates.rend(), pred);
  1539. for (; it != candidates.rend(); ++it) {
  1540. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1541. return found_font;
  1542. }
  1543. return {};
  1544. }
  1545. // Partial implementation of the font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  1546. // FIXME: This should be replaced by the full CSS font selection algorithm.
  1547. RefPtr<Gfx::Font const> StyleComputer::font_matching_algorithm(FontFaceKey const& key, float font_size_in_pt) const
  1548. {
  1549. // If a font family match occurs, the user agent assembles the set of font faces in that family and then
  1550. // narrows the set to a single face using other font properties in the order given below.
  1551. Vector<MatchingFontCandidate> matching_family_fonts;
  1552. for (auto const& font_key_and_loader : m_loaded_fonts) {
  1553. if (font_key_and_loader.key.family_name.equals_ignoring_ascii_case(key.family_name))
  1554. matching_family_fonts.empend(font_key_and_loader.key, font_key_and_loader.value.ptr());
  1555. }
  1556. Gfx::FontDatabase::the().for_each_typeface_with_family_name(key.family_name.to_string(), [&](Gfx::Typeface const& typeface) {
  1557. matching_family_fonts.empend(
  1558. FontFaceKey {
  1559. .family_name = typeface.family(),
  1560. .weight = static_cast<int>(typeface.weight()),
  1561. .slope = typeface.slope(),
  1562. },
  1563. &typeface);
  1564. });
  1565. quick_sort(matching_family_fonts, [](auto const& a, auto const& b) {
  1566. return a.key.weight < b.key.weight;
  1567. });
  1568. // FIXME: 1. font-stretch is tried first.
  1569. // FIXME: 2. font-style is tried next.
  1570. // We don't have complete support of italic and oblique fonts, so matching on font-style can be simplified to:
  1571. // If a matching slope is found, all faces which don't have that matching slope are excluded from the matching set.
  1572. auto style_it = find_if(matching_family_fonts.begin(), matching_family_fonts.end(),
  1573. [&](auto const& matching_font_candidate) { return matching_font_candidate.key.slope == key.slope; });
  1574. if (style_it != matching_family_fonts.end()) {
  1575. matching_family_fonts.remove_all_matching([&](auto const& matching_font_candidate) {
  1576. return matching_font_candidate.key.slope != key.slope;
  1577. });
  1578. }
  1579. // 3. font-weight is matched next.
  1580. // If the desired weight is inclusively between 400 and 500, weights greater than or equal to the target weight
  1581. // are checked in ascending order until 500 is hit and checked, followed by weights less than the target weight
  1582. // in descending order, followed by weights greater than 500, until a match is found.
  1583. if (key.weight >= 400 && key.weight <= 500) {
  1584. auto it = find_if(matching_family_fonts.begin(), matching_family_fonts.end(),
  1585. [&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight >= key.weight; });
  1586. for (; it != matching_family_fonts.end() && it->key.weight <= 500; ++it) {
  1587. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1588. return found_font;
  1589. }
  1590. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1591. return found_font;
  1592. for (; it != matching_family_fonts.end(); ++it) {
  1593. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1594. return found_font;
  1595. }
  1596. }
  1597. // If the desired weight is less than 400, weights less than or equal to the desired weight are checked in descending order
  1598. // followed by weights above the desired weight in ascending order until a match is found.
  1599. if (key.weight < 400) {
  1600. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, true))
  1601. return found_font;
  1602. if (auto found_font = find_matching_font_weight_ascending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1603. return found_font;
  1604. }
  1605. // If the desired weight is greater than 500, weights greater than or equal to the desired weight are checked in ascending order
  1606. // followed by weights below the desired weight in descending order until a match is found.
  1607. if (key.weight > 500) {
  1608. if (auto found_font = find_matching_font_weight_ascending(matching_family_fonts, key.weight, font_size_in_pt, true))
  1609. return found_font;
  1610. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1611. return found_font;
  1612. }
  1613. return {};
  1614. }
  1615. RefPtr<Gfx::Font const> StyleComputer::compute_font_for_style_values(DOM::Element const* element, Optional<CSS::Selector::PseudoElement> 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
  1616. {
  1617. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1618. auto width = font_stretch.to_font_stretch_width();
  1619. auto weight = font_weight.to_font_weight();
  1620. bool bold = weight > Gfx::FontWeight::Regular;
  1621. // FIXME: Should be based on "user's default font size"
  1622. CSSPixels font_size_in_px = 16;
  1623. auto parent_line_height = parent_or_root_element_line_height(element, pseudo_element);
  1624. Gfx::FontPixelMetrics font_pixel_metrics;
  1625. if (parent_element && parent_element->computed_css_values())
  1626. font_pixel_metrics = parent_element->computed_css_values()->computed_font().pixel_metrics();
  1627. else
  1628. font_pixel_metrics = Platform::FontPlugin::the().default_font().pixel_metrics();
  1629. auto parent_font_size = [&]() -> CSSPixels {
  1630. if (!parent_element || !parent_element->computed_css_values())
  1631. return font_size_in_px;
  1632. auto value = parent_element->computed_css_values()->property(CSS::PropertyID::FontSize);
  1633. if (value->is_length()) {
  1634. auto length = value->as_length().length();
  1635. auto parent_line_height = parent_or_root_element_line_height(parent_element, {});
  1636. if (length.is_absolute() || length.is_relative()) {
  1637. Length::FontMetrics font_metrics { font_size_in_px, font_pixel_metrics, parent_line_height };
  1638. return length.to_px(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1639. }
  1640. }
  1641. return font_size_in_px;
  1642. };
  1643. Length::FontMetrics font_metrics { parent_font_size(), font_pixel_metrics, parent_line_height };
  1644. if (font_size.is_identifier()) {
  1645. // https://w3c.github.io/csswg-drafts/css-fonts/#absolute-size-mapping
  1646. auto get_absolute_size_mapping = [](Web::CSS::ValueID identifier) -> CSSPixelFraction {
  1647. switch (identifier) {
  1648. case CSS::ValueID::XxSmall:
  1649. return CSSPixels(3) / 5;
  1650. case CSS::ValueID::XSmall:
  1651. return CSSPixels(3) / 4;
  1652. case CSS::ValueID::Small:
  1653. return CSSPixels(8) / 9;
  1654. case CSS::ValueID::Medium:
  1655. return 1;
  1656. case CSS::ValueID::Large:
  1657. return CSSPixels(6) / 5;
  1658. case CSS::ValueID::XLarge:
  1659. return CSSPixels(3) / 2;
  1660. case CSS::ValueID::XxLarge:
  1661. return 2;
  1662. case CSS::ValueID::XxxLarge:
  1663. return 3;
  1664. case CSS::ValueID::Smaller:
  1665. return CSSPixels(4) / 5;
  1666. case CSS::ValueID::Larger:
  1667. return CSSPixels(5) / 4;
  1668. default:
  1669. return 1;
  1670. }
  1671. };
  1672. auto const identifier = static_cast<IdentifierStyleValue const&>(font_size).id();
  1673. if (identifier == ValueID::Math) {
  1674. auto math_scaling_factor = [&]() {
  1675. // https://w3c.github.io/mathml-core/#the-math-script-level-property
  1676. // If the specified value font-size is math then the computed value of font-size is obtained by multiplying
  1677. // the inherited value of font-size by a nonzero scale factor calculated by the following procedure:
  1678. // 1. Let A be the inherited math-depth value, B the computed math-depth value, C be 0.71 and S be 1.0
  1679. int inherited_math_depth = parent_element && parent_element->computed_css_values()
  1680. ? parent_element->computed_css_values()->math_depth()
  1681. : InitialValues::math_depth();
  1682. int computed_math_depth = math_depth;
  1683. auto size_ratio = 0.71;
  1684. auto scale = 1.0;
  1685. // 2. If A = B then return S.
  1686. bool invert_scale_factor = false;
  1687. if (inherited_math_depth == computed_math_depth) {
  1688. return scale;
  1689. }
  1690. // If B < A, swap A and B and set InvertScaleFactor to true.
  1691. else if (computed_math_depth < inherited_math_depth) {
  1692. AK::swap(inherited_math_depth, computed_math_depth);
  1693. invert_scale_factor = true;
  1694. }
  1695. // Otherwise B > A and set InvertScaleFactor to false.
  1696. else {
  1697. invert_scale_factor = false;
  1698. }
  1699. // 3. Let E be B - A > 0.
  1700. double e = (computed_math_depth - inherited_math_depth) > 0;
  1701. // FIXME: 4. If the inherited first available font has an OpenType MATH table:
  1702. // - If A ≤ 0 and B ≥ 2 then multiply S by scriptScriptPercentScaleDown and decrement E by 2.
  1703. // - Otherwise if A = 1 then multiply S by scriptScriptPercentScaleDown / scriptPercentScaleDown and decrement E by 1.
  1704. // - Otherwise if B = 1 then multiply S by scriptPercentScaleDown and decrement E by 1.
  1705. // 5. Multiply S by C^E.
  1706. scale *= AK::pow(size_ratio, e);
  1707. // 6. Return S if InvertScaleFactor is false and 1/S otherwise.
  1708. if (!invert_scale_factor)
  1709. return scale;
  1710. return 1.0 / scale;
  1711. };
  1712. font_size_in_px = parent_font_size().scale_by(math_scaling_factor());
  1713. } else {
  1714. // https://w3c.github.io/csswg-drafts/css-fonts/#valdef-font-size-relative-size
  1715. // TODO: If the parent element has a keyword font size in the absolute size keyword mapping table,
  1716. // larger may compute the font size to the next entry in the table,
  1717. // and smaller may compute the font size to the previous entry in the table.
  1718. if (identifier == CSS::ValueID::Smaller || identifier == CSS::ValueID::Larger) {
  1719. if (parent_element && parent_element->computed_css_values()) {
  1720. font_size_in_px = CSSPixels::nearest_value_for(parent_element->computed_css_values()->computed_font().pixel_metrics().size);
  1721. }
  1722. }
  1723. font_size_in_px *= get_absolute_size_mapping(identifier);
  1724. }
  1725. } else {
  1726. Length::ResolutionContext const length_resolution_context {
  1727. .viewport_rect = viewport_rect(),
  1728. .font_metrics = font_metrics,
  1729. .root_font_metrics = m_root_element_font_metrics,
  1730. };
  1731. Optional<Length> maybe_length;
  1732. if (font_size.is_percentage()) {
  1733. // Percentages refer to parent element's font size
  1734. maybe_length = Length::make_px(CSSPixels::nearest_value_for(font_size.as_percentage().percentage().as_fraction() * parent_font_size().to_double()));
  1735. } else if (font_size.is_length()) {
  1736. maybe_length = font_size.as_length().length();
  1737. } else if (font_size.is_calculated()) {
  1738. maybe_length = font_size.as_calculated().resolve_length(length_resolution_context);
  1739. }
  1740. if (maybe_length.has_value()) {
  1741. font_size_in_px = maybe_length.value().to_px(length_resolution_context);
  1742. }
  1743. }
  1744. auto slope = font_style.to_font_slope();
  1745. // FIXME: Implement the full font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  1746. // Note: This is modified by the find_font() lambda
  1747. FontSelector font_selector;
  1748. bool monospace = false;
  1749. float const font_size_in_pt = font_size_in_px * 0.75f;
  1750. auto find_font = [&](FlyString const& family) -> RefPtr<Gfx::Font const> {
  1751. font_selector = { family, font_size_in_pt, weight, width, slope };
  1752. FontFaceKey key {
  1753. .family_name = family,
  1754. .weight = weight,
  1755. .slope = slope,
  1756. };
  1757. if (auto it = m_loaded_fonts.find(key); it != m_loaded_fonts.end()) {
  1758. auto& loader = *it->value;
  1759. if (auto found_font = loader.font_with_point_size(font_size_in_pt))
  1760. return found_font;
  1761. }
  1762. if (auto found_font = m_font_cache.get(font_selector))
  1763. return found_font;
  1764. if (auto found_font = font_matching_algorithm(key, font_size_in_pt))
  1765. return found_font;
  1766. if (auto found_font = Gfx::FontDatabase::the().get(family, font_size_in_pt, weight, width, slope, Gfx::Font::AllowInexactSizeMatch::Yes))
  1767. return found_font;
  1768. return {};
  1769. };
  1770. auto find_generic_font = [&](ValueID font_id) -> RefPtr<Gfx::Font const> {
  1771. Platform::GenericFont generic_font {};
  1772. switch (font_id) {
  1773. case ValueID::Monospace:
  1774. case ValueID::UiMonospace:
  1775. generic_font = Platform::GenericFont::Monospace;
  1776. monospace = true;
  1777. break;
  1778. case ValueID::Serif:
  1779. generic_font = Platform::GenericFont::Serif;
  1780. break;
  1781. case ValueID::Fantasy:
  1782. generic_font = Platform::GenericFont::Fantasy;
  1783. break;
  1784. case ValueID::SansSerif:
  1785. generic_font = Platform::GenericFont::SansSerif;
  1786. break;
  1787. case ValueID::Cursive:
  1788. generic_font = Platform::GenericFont::Cursive;
  1789. break;
  1790. case ValueID::UiSerif:
  1791. generic_font = Platform::GenericFont::UiSerif;
  1792. break;
  1793. case ValueID::UiSansSerif:
  1794. generic_font = Platform::GenericFont::UiSansSerif;
  1795. break;
  1796. case ValueID::UiRounded:
  1797. generic_font = Platform::GenericFont::UiRounded;
  1798. break;
  1799. default:
  1800. return {};
  1801. }
  1802. return find_font(Platform::FontPlugin::the().generic_font_name(generic_font));
  1803. };
  1804. RefPtr<Gfx::Font const> found_font;
  1805. if (font_family.is_value_list()) {
  1806. auto const& family_list = static_cast<StyleValueList const&>(font_family).values();
  1807. for (auto const& family : family_list) {
  1808. if (family->is_identifier()) {
  1809. found_font = find_generic_font(family->to_identifier());
  1810. } else if (family->is_string()) {
  1811. found_font = find_font(family->as_string().string_value());
  1812. } else if (family->is_custom_ident()) {
  1813. found_font = find_font(family->as_custom_ident().custom_ident());
  1814. }
  1815. if (found_font)
  1816. break;
  1817. }
  1818. } else if (font_family.is_identifier()) {
  1819. found_font = find_generic_font(font_family.to_identifier());
  1820. } else if (font_family.is_string()) {
  1821. found_font = find_font(font_family.as_string().string_value());
  1822. } else if (font_family.is_custom_ident()) {
  1823. found_font = find_font(font_family.as_custom_ident().custom_ident());
  1824. }
  1825. if (!found_font) {
  1826. found_font = StyleProperties::font_fallback(monospace, bold);
  1827. if (found_font) {
  1828. if (auto scaled_fallback_font = found_font->with_size(font_size_in_pt))
  1829. found_font = scaled_fallback_font;
  1830. }
  1831. }
  1832. m_font_cache.set(font_selector, *found_font);
  1833. return found_font;
  1834. }
  1835. void StyleComputer::compute_font(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1836. {
  1837. // To compute the font, first ensure that we've defaulted the relevant CSS font properties.
  1838. // FIXME: This should be more sophisticated.
  1839. compute_defaulted_property_value(style, element, CSS::PropertyID::FontFamily, pseudo_element);
  1840. compute_defaulted_property_value(style, element, CSS::PropertyID::FontSize, pseudo_element);
  1841. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStretch, pseudo_element);
  1842. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStyle, pseudo_element);
  1843. compute_defaulted_property_value(style, element, CSS::PropertyID::FontWeight, pseudo_element);
  1844. compute_defaulted_property_value(style, element, CSS::PropertyID::LineHeight, pseudo_element);
  1845. auto font_family = style.property(CSS::PropertyID::FontFamily);
  1846. auto font_size = style.property(CSS::PropertyID::FontSize);
  1847. auto font_style = style.property(CSS::PropertyID::FontStyle);
  1848. auto font_weight = style.property(CSS::PropertyID::FontWeight);
  1849. auto font_stretch = style.property(CSS::PropertyID::FontStretch);
  1850. auto found_font = compute_font_for_style_values(element, pseudo_element, font_family, font_size, font_style, font_weight, font_stretch, style.math_depth());
  1851. style.set_property(CSS::PropertyID::FontSize, LengthStyleValue::create(CSS::Length::make_px(CSSPixels::nearest_value_for(found_font->pixel_size()))), nullptr);
  1852. style.set_property(CSS::PropertyID::FontWeight, NumberStyleValue::create(font_weight->to_font_weight()));
  1853. style.set_computed_font(found_font.release_nonnull());
  1854. if (element && is<HTML::HTMLHtmlElement>(*element)) {
  1855. const_cast<StyleComputer&>(*this).m_root_element_font_metrics = calculate_root_element_font_metrics(style);
  1856. }
  1857. }
  1858. Gfx::Font const& StyleComputer::initial_font() const
  1859. {
  1860. // FIXME: This is not correct.
  1861. return StyleProperties::font_fallback(false, false);
  1862. }
  1863. CSSPixels StyleComputer::parent_or_root_element_line_height(DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1864. {
  1865. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1866. if (!parent_element)
  1867. return m_root_element_font_metrics.line_height;
  1868. auto const* computed_values = parent_element->computed_css_values();
  1869. if (!computed_values)
  1870. return m_root_element_font_metrics.line_height;
  1871. auto parent_font_pixel_metrics = computed_values->computed_font().pixel_metrics();
  1872. auto parent_font_size = computed_values->property(CSS::PropertyID::FontSize)->as_length().length();
  1873. // FIXME: Can the parent font size be non-absolute here?
  1874. auto parent_font_size_value = parent_font_size.is_absolute() ? parent_font_size.absolute_length_to_px() : m_root_element_font_metrics.font_size;
  1875. auto parent_parent_line_height = parent_or_root_element_line_height(parent_element, {});
  1876. Length::FontMetrics parent_font_metrics { parent_font_size_value, parent_font_pixel_metrics, parent_parent_line_height };
  1877. return computed_values->line_height(viewport_rect(), parent_font_metrics, m_root_element_font_metrics);
  1878. }
  1879. void StyleComputer::absolutize_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1880. {
  1881. auto parent_or_root_line_height = parent_or_root_element_line_height(element, pseudo_element);
  1882. auto font_pixel_metrics = style.computed_font().pixel_metrics();
  1883. Length::FontMetrics font_metrics { m_root_element_font_metrics.font_size, font_pixel_metrics, parent_or_root_line_height };
  1884. auto font_size = style.property(CSS::PropertyID::FontSize)->as_length().length().to_px(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1885. font_metrics.font_size = font_size;
  1886. // NOTE: Percentage line-height values are relative to the font-size of the element.
  1887. // We have to resolve them right away, so that the *computed* line-height is ready for inheritance.
  1888. // We can't simply absolutize *all* percentage values against the font size,
  1889. // because most percentages are relative to containing block metrics.
  1890. auto line_height_value_slot = style.m_property_values[to_underlying(CSS::PropertyID::LineHeight)].map([](auto& x) -> auto& { return x.style; });
  1891. if (line_height_value_slot.has_value() && (*line_height_value_slot)->is_percentage()) {
  1892. *line_height_value_slot = LengthStyleValue::create(
  1893. Length::make_px(CSSPixels::nearest_value_for(font_size * static_cast<double>((*line_height_value_slot)->as_percentage().percentage().as_fraction()))));
  1894. }
  1895. auto line_height = style.line_height(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1896. font_metrics.line_height = line_height;
  1897. // NOTE: line-height might be using lh which should be resolved against the parent line height (like we did here already)
  1898. if (line_height_value_slot.has_value() && (*line_height_value_slot)->is_length())
  1899. (*line_height_value_slot) = LengthStyleValue::create(Length::make_px(line_height));
  1900. for (size_t i = 0; i < style.m_property_values.size(); ++i) {
  1901. auto& value_slot = style.m_property_values[i];
  1902. if (!value_slot.has_value())
  1903. continue;
  1904. value_slot->style = value_slot->style->absolutized(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1905. }
  1906. }
  1907. enum class BoxTypeTransformation {
  1908. None,
  1909. Blockify,
  1910. Inlinify,
  1911. };
  1912. static BoxTypeTransformation required_box_type_transformation(StyleProperties const& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement> const& pseudo_element)
  1913. {
  1914. // NOTE: We never blockify <br> elements. They are always inline.
  1915. // There is currently no way to express in CSS how a <br> element really behaves.
  1916. // Spec issue: https://github.com/whatwg/html/issues/2291
  1917. if (is<HTML::HTMLBRElement>(element))
  1918. return BoxTypeTransformation::None;
  1919. // Absolute positioning or floating an element blockifies the box’s display type. [CSS2]
  1920. if (style.position() == CSS::Position::Absolute || style.position() == CSS::Position::Fixed || style.float_() != CSS::Float::None)
  1921. return BoxTypeTransformation::Blockify;
  1922. // FIXME: Containment in a ruby container inlinifies the box’s display type, as described in [CSS-RUBY-1].
  1923. // NOTE: If we're computing style for a pseudo-element, the effective parent will be the originating element itself, not its parent.
  1924. auto const* parent = pseudo_element.has_value() ? &element : element.parent_element();
  1925. // A parent with a grid or flex display value blockifies the box’s display type. [CSS-GRID-1] [CSS-FLEXBOX-1]
  1926. if (parent && parent->computed_css_values()) {
  1927. auto const& parent_display = parent->computed_css_values()->display();
  1928. if (parent_display.is_grid_inside() || parent_display.is_flex_inside())
  1929. return BoxTypeTransformation::Blockify;
  1930. }
  1931. return BoxTypeTransformation::None;
  1932. }
  1933. // https://drafts.csswg.org/css-display/#transformations
  1934. void StyleComputer::transform_box_type_if_needed(StyleProperties& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1935. {
  1936. // 2.7. Automatic Box Type Transformations
  1937. // Some layout effects require blockification or inlinification of the box type,
  1938. // which sets the box’s computed outer display type to block or inline (respectively).
  1939. // (This has no effect on display types that generate no box at all, such as none or contents.)
  1940. auto display = style.display();
  1941. if (display.is_none() || display.is_contents())
  1942. return;
  1943. auto new_display = display;
  1944. if (display.is_math_inside()) {
  1945. // https://w3c.github.io/mathml-core/#new-display-math-value
  1946. // For elements that are not MathML elements, if the specified value of display is inline math or block math
  1947. // then the computed value is block flow and inline flow respectively.
  1948. if (element.namespace_() != Namespace::MathML)
  1949. new_display = CSS::Display { display.outside(), CSS::DisplayInside::Flow };
  1950. // For the mtable element the computed value is block table and inline table respectively.
  1951. else if (element.tag_name().equals_ignoring_ascii_case("mtable"sv))
  1952. new_display = CSS::Display { display.outside(), CSS::DisplayInside::Table };
  1953. // For the mtr element, the computed value is table-row.
  1954. else if (element.tag_name().equals_ignoring_ascii_case("mtr"sv))
  1955. new_display = CSS::Display { CSS::DisplayInternal::TableRow };
  1956. // For the mtd element, the computed value is table-cell.
  1957. else if (element.tag_name().equals_ignoring_ascii_case("mtd"sv))
  1958. new_display = CSS::Display { CSS::DisplayInternal::TableCell };
  1959. }
  1960. switch (required_box_type_transformation(style, element, pseudo_element)) {
  1961. case BoxTypeTransformation::None:
  1962. break;
  1963. case BoxTypeTransformation::Blockify:
  1964. if (display.is_block_outside())
  1965. return;
  1966. // If a layout-internal box is blockified, its inner display type converts to flow so that it becomes a block container.
  1967. if (display.is_internal()) {
  1968. new_display = CSS::Display::from_short(CSS::Display::Short::Block);
  1969. } else {
  1970. VERIFY(display.is_outside_and_inside());
  1971. // For legacy reasons, if an inline block box (inline flow-root) is blockified, it becomes a block box (losing its flow-root nature).
  1972. // For consistency, a run-in flow-root box also blockifies to a block box.
  1973. if (display.is_inline_block()) {
  1974. new_display = CSS::Display { CSS::DisplayOutside::Block, CSS::DisplayInside::Flow, display.list_item() };
  1975. } else {
  1976. new_display = CSS::Display { CSS::DisplayOutside::Block, display.inside(), display.list_item() };
  1977. }
  1978. }
  1979. break;
  1980. case BoxTypeTransformation::Inlinify:
  1981. if (display.is_inline_outside()) {
  1982. // FIXME: If an inline box (inline flow) is inlinified, it recursively inlinifies all of its in-flow children,
  1983. // so that no block-level descendants break up the inline formatting context in which it participates.
  1984. if (display.is_flow_inside()) {
  1985. dbgln("FIXME: Inlinify inline box children recursively");
  1986. }
  1987. break;
  1988. }
  1989. if (display.is_internal()) {
  1990. // Inlinification has no effect on layout-internal boxes. (However, placement in such an inline context will typically cause them
  1991. // to be wrapped in an appropriately-typed anonymous inline-level box.)
  1992. } else {
  1993. VERIFY(display.is_outside_and_inside());
  1994. // If a block box (block flow) is inlinified, its inner display type is set to flow-root so that it remains a block container.
  1995. if (display.is_block_outside() && display.is_flow_inside()) {
  1996. new_display = CSS::Display { CSS::DisplayOutside::Inline, CSS::DisplayInside::FlowRoot, display.list_item() };
  1997. }
  1998. new_display = CSS::Display { CSS::DisplayOutside::Inline, display.inside(), display.list_item() };
  1999. }
  2000. break;
  2001. }
  2002. if (new_display != display)
  2003. style.set_property(CSS::PropertyID::Display, DisplayStyleValue::create(new_display), style.property_source_declaration(CSS::PropertyID::Display));
  2004. }
  2005. NonnullRefPtr<StyleProperties> StyleComputer::create_document_style() const
  2006. {
  2007. auto style = StyleProperties::create();
  2008. compute_math_depth(style, nullptr, {});
  2009. compute_font(style, nullptr, {});
  2010. compute_defaulted_values(style, nullptr, {});
  2011. absolutize_values(style, nullptr, {});
  2012. style->set_property(CSS::PropertyID::Width, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().width())), nullptr);
  2013. style->set_property(CSS::PropertyID::Height, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().height())), nullptr);
  2014. style->set_property(CSS::PropertyID::Display, CSS::DisplayStyleValue::create(CSS::Display::from_short(CSS::Display::Short::Block)), nullptr);
  2015. return style;
  2016. }
  2017. ErrorOr<NonnullRefPtr<StyleProperties>> StyleComputer::compute_style(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  2018. {
  2019. auto style = TRY(compute_style_impl(element, move(pseudo_element), ComputeStyleMode::Normal));
  2020. return style.release_nonnull();
  2021. }
  2022. ErrorOr<RefPtr<StyleProperties>> StyleComputer::compute_pseudo_element_style_if_needed(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  2023. {
  2024. return compute_style_impl(element, move(pseudo_element), ComputeStyleMode::CreatePseudoElementStyleIfNeeded);
  2025. }
  2026. ErrorOr<RefPtr<StyleProperties>> StyleComputer::compute_style_impl(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, ComputeStyleMode mode) const
  2027. {
  2028. build_rule_cache_if_needed();
  2029. auto style = StyleProperties::create();
  2030. // 1. Perform the cascade. This produces the "specified style"
  2031. bool did_match_any_pseudo_element_rules = false;
  2032. TRY(compute_cascaded_values(style, element, pseudo_element, did_match_any_pseudo_element_rules, mode));
  2033. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded && !did_match_any_pseudo_element_rules)
  2034. return nullptr;
  2035. // 2. Compute the math-depth property, since that might affect the font-size
  2036. compute_math_depth(style, &element, pseudo_element);
  2037. // 3. Compute the font, since that may be needed for font-relative CSS units
  2038. compute_font(style, &element, pseudo_element);
  2039. // 4. Absolutize values, turning font/viewport relative lengths into absolute lengths
  2040. absolutize_values(style, &element, pseudo_element);
  2041. // 5. Default the values, applying inheritance and 'initial' as needed
  2042. compute_defaulted_values(style, &element, pseudo_element);
  2043. // 6. Run automatic box type transformations
  2044. transform_box_type_if_needed(style, element, pseudo_element);
  2045. return style;
  2046. }
  2047. void StyleComputer::build_rule_cache_if_needed() const
  2048. {
  2049. if (m_author_rule_cache && m_user_rule_cache && m_user_agent_rule_cache)
  2050. return;
  2051. const_cast<StyleComputer&>(*this).build_rule_cache();
  2052. }
  2053. NonnullOwnPtr<StyleComputer::RuleCache> StyleComputer::make_rule_cache_for_cascade_origin(CascadeOrigin cascade_origin)
  2054. {
  2055. auto rule_cache = make<RuleCache>();
  2056. size_t num_class_rules = 0;
  2057. size_t num_id_rules = 0;
  2058. size_t num_tag_name_rules = 0;
  2059. size_t num_pseudo_element_rules = 0;
  2060. Vector<MatchingRule> matching_rules;
  2061. size_t style_sheet_index = 0;
  2062. for_each_stylesheet(cascade_origin, [&](auto& sheet) {
  2063. size_t rule_index = 0;
  2064. sheet.for_each_effective_style_rule([&](auto const& rule) {
  2065. size_t selector_index = 0;
  2066. for (CSS::Selector const& selector : rule.selectors()) {
  2067. MatchingRule matching_rule {
  2068. &rule,
  2069. sheet,
  2070. style_sheet_index,
  2071. rule_index,
  2072. selector_index,
  2073. selector.specificity()
  2074. };
  2075. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  2076. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::PseudoElement) {
  2077. matching_rule.contains_pseudo_element = true;
  2078. ++num_pseudo_element_rules;
  2079. break;
  2080. }
  2081. }
  2082. bool added_to_bucket = false;
  2083. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  2084. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Id) {
  2085. rule_cache->rules_by_id.ensure(simple_selector.name()).append(move(matching_rule));
  2086. ++num_id_rules;
  2087. added_to_bucket = true;
  2088. break;
  2089. }
  2090. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Class) {
  2091. rule_cache->rules_by_class.ensure(simple_selector.name()).append(move(matching_rule));
  2092. ++num_class_rules;
  2093. added_to_bucket = true;
  2094. break;
  2095. }
  2096. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::TagName) {
  2097. rule_cache->rules_by_tag_name.ensure(simple_selector.qualified_name().name.lowercase_name).append(move(matching_rule));
  2098. ++num_tag_name_rules;
  2099. added_to_bucket = true;
  2100. break;
  2101. }
  2102. }
  2103. if (!added_to_bucket)
  2104. rule_cache->other_rules.append(move(matching_rule));
  2105. ++selector_index;
  2106. }
  2107. ++rule_index;
  2108. });
  2109. sheet.for_each_effective_keyframes_at_rule([&](CSSKeyframesRule const& rule) {
  2110. auto keyframe_set = make<AnimationKeyFrameSet>();
  2111. AnimationKeyFrameSet::ResolvedKeyFrame resolved_keyframe;
  2112. // Forwards pass, resolve all the user-specified keyframe properties.
  2113. for (auto const& keyframe : rule.keyframes()) {
  2114. auto key = static_cast<u64>(keyframe->key().value() * AnimationKeyFrameKeyScaleFactor);
  2115. auto keyframe_rule = keyframe->style();
  2116. if (!is<PropertyOwningCSSStyleDeclaration>(*keyframe_rule))
  2117. continue;
  2118. auto current_keyframe = resolved_keyframe;
  2119. auto& keyframe_style = static_cast<PropertyOwningCSSStyleDeclaration const&>(*keyframe_rule);
  2120. for (auto& property : keyframe_style.properties())
  2121. current_keyframe.resolved_properties[to_underlying(property.property_id)] = property.value;
  2122. resolved_keyframe = move(current_keyframe);
  2123. keyframe_set->keyframes_by_key.insert(key, resolved_keyframe);
  2124. }
  2125. // If there is no 'from' keyframe, make a synthetic one.
  2126. auto made_a_synthetic_from_keyframe = false;
  2127. if (!keyframe_set->keyframes_by_key.find(0)) {
  2128. keyframe_set->keyframes_by_key.insert(0, AnimationKeyFrameSet::ResolvedKeyFrame());
  2129. made_a_synthetic_from_keyframe = true;
  2130. }
  2131. // Backwards pass, resolve all the implied properties, go read <https://drafts.csswg.org/css-animations-2/#keyframe-processing> to see why.
  2132. auto first = true;
  2133. for (auto const& keyframe : rule.keyframes().in_reverse()) {
  2134. auto key = static_cast<u64>(keyframe->key().value() * AnimationKeyFrameKeyScaleFactor);
  2135. auto keyframe_rule = keyframe->style();
  2136. if (!is<PropertyOwningCSSStyleDeclaration>(*keyframe_rule))
  2137. continue;
  2138. // The last keyframe is already fully resolved.
  2139. if (first) {
  2140. first = false;
  2141. continue;
  2142. }
  2143. auto next_keyframe = resolved_keyframe;
  2144. auto& current_keyframes = *keyframe_set->keyframes_by_key.find(key);
  2145. for (auto it = next_keyframe.resolved_properties.begin(); !it.is_end(); ++it) {
  2146. auto& current_property = current_keyframes.resolved_properties[it.index()];
  2147. if (!current_property.has<Empty>() || it->has<Empty>())
  2148. continue;
  2149. if (key == 0)
  2150. current_property = AnimationKeyFrameSet::ResolvedKeyFrame::UseInitial();
  2151. else
  2152. current_property = *it;
  2153. }
  2154. resolved_keyframe = current_keyframes;
  2155. }
  2156. if (made_a_synthetic_from_keyframe && !first) {
  2157. auto next_keyframe = resolved_keyframe;
  2158. auto& current_keyframes = *keyframe_set->keyframes_by_key.find(0);
  2159. for (auto it = next_keyframe.resolved_properties.begin(); !it.is_end(); ++it) {
  2160. auto& current_property = current_keyframes.resolved_properties[it.index()];
  2161. if (!current_property.has<Empty>() || it->has<Empty>())
  2162. continue;
  2163. current_property = AnimationKeyFrameSet::ResolvedKeyFrame::UseInitial();
  2164. }
  2165. resolved_keyframe = current_keyframes;
  2166. }
  2167. if constexpr (LIBWEB_CSS_DEBUG) {
  2168. dbgln("Resolved keyframe set '{}' into {} keyframes:", rule.name(), keyframe_set->keyframes_by_key.size());
  2169. for (auto it = keyframe_set->keyframes_by_key.begin(); it != keyframe_set->keyframes_by_key.end(); ++it) {
  2170. size_t props = 0;
  2171. for (auto& entry : it->resolved_properties)
  2172. props += !entry.has<Empty>();
  2173. dbgln(" - keyframe {}: {} properties", it.key(), props);
  2174. }
  2175. }
  2176. rule_cache->rules_by_animation_keyframes.set(rule.name(), move(keyframe_set));
  2177. });
  2178. ++style_sheet_index;
  2179. });
  2180. if constexpr (LIBWEB_CSS_DEBUG) {
  2181. dbgln("Built rule cache!");
  2182. dbgln(" ID: {}", num_id_rules);
  2183. dbgln(" Class: {}", num_class_rules);
  2184. dbgln(" TagName: {}", num_tag_name_rules);
  2185. dbgln("PseudoElement: {}", num_pseudo_element_rules);
  2186. dbgln(" Other: {}", rule_cache->other_rules.size());
  2187. dbgln(" Total: {}", num_class_rules + num_id_rules + num_tag_name_rules + rule_cache->other_rules.size());
  2188. }
  2189. return rule_cache;
  2190. }
  2191. void StyleComputer::build_rule_cache()
  2192. {
  2193. // FIXME: How are we sometimes calculating style before the Document has a Page?
  2194. if (document().page()) {
  2195. if (auto user_style_source = document().page()->user_style(); user_style_source.has_value()) {
  2196. m_user_style_sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document()), user_style_source.value()));
  2197. }
  2198. }
  2199. m_author_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::Author);
  2200. m_user_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::User);
  2201. m_user_agent_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::UserAgent);
  2202. }
  2203. void StyleComputer::invalidate_rule_cache()
  2204. {
  2205. m_author_rule_cache = nullptr;
  2206. // NOTE: We could be smarter about keeping the user rule cache, and style sheet.
  2207. // Currently we are re-parsing the user style sheet every time we build the caches,
  2208. // as it may have changed.
  2209. m_user_rule_cache = nullptr;
  2210. m_user_style_sheet = nullptr;
  2211. // NOTE: It might not be necessary to throw away the UA rule cache.
  2212. // If we are sure that it's safe, we could keep it as an optimization.
  2213. m_user_agent_rule_cache = nullptr;
  2214. }
  2215. CSSPixelRect StyleComputer::viewport_rect() const
  2216. {
  2217. if (auto const navigable = document().navigable())
  2218. return navigable->viewport_rect();
  2219. return {};
  2220. }
  2221. void StyleComputer::did_load_font(FlyString const& family_name)
  2222. {
  2223. m_font_cache.did_load_font({}, family_name);
  2224. document().invalidate_style();
  2225. }
  2226. void StyleComputer::load_fonts_from_sheet(CSSStyleSheet const& sheet)
  2227. {
  2228. for (auto const& rule : static_cast<CSSStyleSheet const&>(sheet).rules()) {
  2229. if (!is<CSSFontFaceRule>(*rule))
  2230. continue;
  2231. auto const& font_face = static_cast<CSSFontFaceRule const&>(*rule).font_face();
  2232. if (font_face.sources().is_empty())
  2233. continue;
  2234. FontFaceKey key {
  2235. .family_name = font_face.font_family(),
  2236. .weight = font_face.weight().value_or(0),
  2237. .slope = font_face.slope().value_or(0),
  2238. };
  2239. if (m_loaded_fonts.contains(key))
  2240. continue;
  2241. Vector<AK::URL> urls;
  2242. for (auto& source : font_face.sources()) {
  2243. // FIXME: These should be loaded relative to the stylesheet URL instead of the document URL.
  2244. if (source.local_or_url.has<AK::URL>())
  2245. urls.append(m_document->parse_url(source.local_or_url.get<AK::URL>().to_deprecated_string()));
  2246. // FIXME: Handle local()
  2247. }
  2248. if (urls.is_empty())
  2249. continue;
  2250. auto loader = make<FontLoader>(const_cast<StyleComputer&>(*this), font_face.font_family(), move(urls));
  2251. const_cast<StyleComputer&>(*this).m_loaded_fonts.set(key, move(loader));
  2252. }
  2253. }
  2254. void StyleComputer::compute_math_depth(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  2255. {
  2256. // https://w3c.github.io/mathml-core/#propdef-math-depth
  2257. // First, ensure that the relevant CSS properties have been defaulted.
  2258. // FIXME: This should be more sophisticated.
  2259. compute_defaulted_property_value(style, element, CSS::PropertyID::MathDepth, pseudo_element);
  2260. compute_defaulted_property_value(style, element, CSS::PropertyID::MathStyle, pseudo_element);
  2261. auto inherited_math_depth = [&]() {
  2262. if (!element || !element->parent_element())
  2263. return InitialValues::math_depth();
  2264. return element->parent_element()->computed_css_values()->math_depth();
  2265. };
  2266. auto value = style.property(CSS::PropertyID::MathDepth);
  2267. if (!value->is_math_depth()) {
  2268. style.set_math_depth(inherited_math_depth());
  2269. return;
  2270. }
  2271. auto& math_depth = value->as_math_depth();
  2272. auto resolve_integer = [&](StyleValue const& integer_value) {
  2273. if (integer_value.is_integer())
  2274. return integer_value.as_integer().integer();
  2275. if (integer_value.is_calculated())
  2276. return integer_value.as_calculated().resolve_integer().value();
  2277. VERIFY_NOT_REACHED();
  2278. };
  2279. // The computed value of the math-depth value is determined as follows:
  2280. // - If the specified value of math-depth is auto-add and the inherited value of math-style is compact
  2281. // then the computed value of math-depth of the element is its inherited value plus one.
  2282. if (math_depth.is_auto_add() && style.property(CSS::PropertyID::MathStyle)->to_identifier() == CSS::ValueID::Compact) {
  2283. style.set_math_depth(inherited_math_depth() + 1);
  2284. return;
  2285. }
  2286. // - If the specified value of math-depth is of the form add(<integer>) then the computed value of
  2287. // math-depth of the element is its inherited value plus the specified integer.
  2288. if (math_depth.is_add()) {
  2289. style.set_math_depth(inherited_math_depth() + resolve_integer(*math_depth.integer_value()));
  2290. return;
  2291. }
  2292. // - If the specified value of math-depth is of the form <integer> then the computed value of math-depth
  2293. // of the element is the specified integer.
  2294. if (math_depth.is_integer()) {
  2295. style.set_math_depth(resolve_integer(*math_depth.integer_value()));
  2296. return;
  2297. }
  2298. // - Otherwise, the computed value of math-depth of the element is the inherited one.
  2299. style.set_math_depth(inherited_math_depth());
  2300. }
  2301. }