StyleComputer.cpp 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850
  1. /*
  2. * Copyright (c) 2018-2023, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021, the SerenityOS developers.
  4. * Copyright (c) 2021-2023, Sam Atkins <atkinssj@serenityos.org>
  5. * Copyright (c) 2024, Matthew Olsson <mattco@serenityos.org>
  6. *
  7. * SPDX-License-Identifier: BSD-2-Clause
  8. */
  9. #include <AK/BinarySearch.h>
  10. #include <AK/Debug.h>
  11. #include <AK/Error.h>
  12. #include <AK/Find.h>
  13. #include <AK/Function.h>
  14. #include <AK/HashMap.h>
  15. #include <AK/Math.h>
  16. #include <AK/QuickSort.h>
  17. #include <AK/TemporaryChange.h>
  18. #include <LibGfx/Font/Font.h>
  19. #include <LibGfx/Font/FontDatabase.h>
  20. #include <LibGfx/Font/FontStyleMapping.h>
  21. #include <LibGfx/Font/OpenType/Typeface.h>
  22. #include <LibGfx/Font/ScaledFont.h>
  23. #include <LibGfx/Font/Typeface.h>
  24. #include <LibGfx/Font/WOFF/Loader.h>
  25. #include <LibGfx/Font/WOFF2/Loader.h>
  26. #include <LibWeb/Animations/AnimationEffect.h>
  27. #include <LibWeb/Animations/DocumentTimeline.h>
  28. #include <LibWeb/CSS/AnimationEvent.h>
  29. #include <LibWeb/CSS/CSSAnimation.h>
  30. #include <LibWeb/CSS/CSSFontFaceRule.h>
  31. #include <LibWeb/CSS/CSSImportRule.h>
  32. #include <LibWeb/CSS/CSSStyleRule.h>
  33. #include <LibWeb/CSS/Parser/Parser.h>
  34. #include <LibWeb/CSS/SelectorEngine.h>
  35. #include <LibWeb/CSS/StyleComputer.h>
  36. #include <LibWeb/CSS/StyleSheet.h>
  37. #include <LibWeb/CSS/StyleValues/AngleStyleValue.h>
  38. #include <LibWeb/CSS/StyleValues/BorderRadiusStyleValue.h>
  39. #include <LibWeb/CSS/StyleValues/ColorStyleValue.h>
  40. #include <LibWeb/CSS/StyleValues/CustomIdentStyleValue.h>
  41. #include <LibWeb/CSS/StyleValues/DisplayStyleValue.h>
  42. #include <LibWeb/CSS/StyleValues/EasingStyleValue.h>
  43. #include <LibWeb/CSS/StyleValues/FilterValueListStyleValue.h>
  44. #include <LibWeb/CSS/StyleValues/FrequencyStyleValue.h>
  45. #include <LibWeb/CSS/StyleValues/GridTrackPlacementStyleValue.h>
  46. #include <LibWeb/CSS/StyleValues/GridTrackSizeListStyleValue.h>
  47. #include <LibWeb/CSS/StyleValues/IdentifierStyleValue.h>
  48. #include <LibWeb/CSS/StyleValues/IntegerStyleValue.h>
  49. #include <LibWeb/CSS/StyleValues/LengthStyleValue.h>
  50. #include <LibWeb/CSS/StyleValues/MathDepthStyleValue.h>
  51. #include <LibWeb/CSS/StyleValues/NumberStyleValue.h>
  52. #include <LibWeb/CSS/StyleValues/PercentageStyleValue.h>
  53. #include <LibWeb/CSS/StyleValues/PositionStyleValue.h>
  54. #include <LibWeb/CSS/StyleValues/RatioStyleValue.h>
  55. #include <LibWeb/CSS/StyleValues/RectStyleValue.h>
  56. #include <LibWeb/CSS/StyleValues/ShorthandStyleValue.h>
  57. #include <LibWeb/CSS/StyleValues/StringStyleValue.h>
  58. #include <LibWeb/CSS/StyleValues/StyleValueList.h>
  59. #include <LibWeb/CSS/StyleValues/TimeStyleValue.h>
  60. #include <LibWeb/CSS/StyleValues/TransformationStyleValue.h>
  61. #include <LibWeb/CSS/StyleValues/TransitionStyleValue.h>
  62. #include <LibWeb/CSS/StyleValues/UnresolvedStyleValue.h>
  63. #include <LibWeb/CSS/StyleValues/UnsetStyleValue.h>
  64. #include <LibWeb/DOM/Attr.h>
  65. #include <LibWeb/DOM/Document.h>
  66. #include <LibWeb/DOM/Element.h>
  67. #include <LibWeb/DOM/ShadowRoot.h>
  68. #include <LibWeb/HTML/HTMLBRElement.h>
  69. #include <LibWeb/HTML/HTMLHtmlElement.h>
  70. #include <LibWeb/HTML/Parser/HTMLParser.h>
  71. #include <LibWeb/HTML/Scripting/TemporaryExecutionContext.h>
  72. #include <LibWeb/HighResolutionTime/TimeOrigin.h>
  73. #include <LibWeb/Layout/Node.h>
  74. #include <LibWeb/Namespace.h>
  75. #include <LibWeb/Painting/PaintableBox.h>
  76. #include <LibWeb/Platform/FontPlugin.h>
  77. #include <LibWeb/ReferrerPolicy/AbstractOperations.h>
  78. #include <math.h>
  79. #include <stdio.h>
  80. namespace AK {
  81. // traits for FontFaceKey
  82. template<>
  83. struct Traits<Web::CSS::FontFaceKey> : public DefaultTraits<Web::CSS::FontFaceKey> {
  84. static unsigned hash(Web::CSS::FontFaceKey const& key) { return pair_int_hash(key.family_name.hash(), pair_int_hash(key.weight, key.slope)); }
  85. };
  86. }
  87. namespace Web::CSS {
  88. static DOM::Element const* element_to_inherit_style_from(DOM::Element const*, Optional<CSS::Selector::PseudoElement::Type>);
  89. StyleComputer::StyleComputer(DOM::Document& document)
  90. : m_document(document)
  91. , m_default_font_metrics(16, Platform::FontPlugin::the().default_font().pixel_metrics())
  92. , m_root_element_font_metrics(m_default_font_metrics)
  93. {
  94. }
  95. StyleComputer::~StyleComputer() = default;
  96. FontLoader::FontLoader(StyleComputer& style_computer, FlyString family_name, Vector<Gfx::UnicodeRange> unicode_ranges, Vector<URL::URL> urls, Function<void(FontLoader const&)> on_load, Function<void()> on_fail)
  97. : m_style_computer(style_computer)
  98. , m_family_name(move(family_name))
  99. , m_unicode_ranges(move(unicode_ranges))
  100. , m_urls(move(urls))
  101. , m_on_load(move(on_load))
  102. , m_on_fail(move(on_fail))
  103. {
  104. }
  105. FontLoader::~FontLoader() = default;
  106. void FontLoader::resource_did_load()
  107. {
  108. auto result = try_load_font();
  109. if (result.is_error()) {
  110. dbgln("Failed to parse font: {}", result.error());
  111. start_loading_next_url();
  112. return;
  113. }
  114. m_vector_font = result.release_value();
  115. m_style_computer.did_load_font(m_family_name);
  116. if (m_on_load)
  117. m_on_load(*this);
  118. }
  119. void FontLoader::resource_did_fail()
  120. {
  121. if (m_on_fail) {
  122. m_on_fail();
  123. }
  124. }
  125. RefPtr<Gfx::Font> FontLoader::font_with_point_size(float point_size)
  126. {
  127. if (!m_vector_font) {
  128. start_loading_next_url();
  129. return nullptr;
  130. }
  131. return m_vector_font->scaled_font(point_size);
  132. }
  133. void FontLoader::start_loading_next_url()
  134. {
  135. if (resource() && resource()->is_pending())
  136. return;
  137. if (m_urls.is_empty())
  138. return;
  139. LoadRequest request;
  140. request.set_url(m_urls.take_first());
  141. // HACK: We're crudely computing the referer value and shoving it into the
  142. // request until fetch infrastructure is used here.
  143. auto referrer_url = ReferrerPolicy::strip_url_for_use_as_referrer(m_style_computer.document().url());
  144. if (referrer_url.has_value() && !request.headers().contains("Referer"))
  145. request.set_header("Referer", referrer_url->serialize());
  146. set_resource(ResourceLoader::the().load_resource(Resource::Type::Generic, request));
  147. }
  148. ErrorOr<NonnullRefPtr<Gfx::Typeface>> FontLoader::try_load_font()
  149. {
  150. // 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
  151. auto const& mime_type = resource()->mime_type();
  152. if (mime_type == "font/ttf"sv || mime_type == "application/x-font-ttf"sv) {
  153. if (auto result = OpenType::Typeface::try_load_from_externally_owned_memory(resource()->encoded_data()); !result.is_error()) {
  154. return result;
  155. }
  156. }
  157. if (mime_type == "font/woff"sv || mime_type == "application/font-woff"sv) {
  158. if (auto result = WOFF::try_load_from_externally_owned_memory(resource()->encoded_data()); !result.is_error()) {
  159. return result;
  160. }
  161. }
  162. if (mime_type == "font/woff2"sv || mime_type == "application/font-woff2"sv) {
  163. if (auto result = WOFF2::try_load_from_externally_owned_memory(resource()->encoded_data()); !result.is_error()) {
  164. return result;
  165. }
  166. }
  167. // We don't have the luxury of knowing the MIME type, so we have to try all formats.
  168. auto ttf = OpenType::Typeface::try_load_from_externally_owned_memory(resource()->encoded_data());
  169. if (!ttf.is_error())
  170. return ttf.release_value();
  171. auto woff = WOFF::try_load_from_externally_owned_memory(resource()->encoded_data());
  172. if (!woff.is_error())
  173. return woff.release_value();
  174. auto woff2 = WOFF2::try_load_from_externally_owned_memory(resource()->encoded_data());
  175. if (!woff2.is_error())
  176. return woff2.release_value();
  177. return Error::from_string_literal("Automatic format detection failed");
  178. }
  179. struct StyleComputer::MatchingFontCandidate {
  180. FontFaceKey key;
  181. Variant<FontLoaderList*, Gfx::Typeface const*> loader_or_typeface;
  182. [[nodiscard]] RefPtr<Gfx::FontCascadeList const> font_with_point_size(float point_size) const
  183. {
  184. RefPtr<Gfx::FontCascadeList> font_list = Gfx::FontCascadeList::create();
  185. if (auto* loader_list = loader_or_typeface.get_pointer<FontLoaderList*>(); loader_list) {
  186. for (auto const& loader : **loader_list) {
  187. if (auto font = loader->font_with_point_size(point_size); font)
  188. font_list->add(*font, loader->unicode_ranges());
  189. }
  190. return font_list;
  191. }
  192. font_list->add(loader_or_typeface.get<Gfx::Typeface const*>()->scaled_font(point_size));
  193. return font_list;
  194. }
  195. };
  196. static CSSStyleSheet& default_stylesheet(DOM::Document const& document)
  197. {
  198. static JS::Handle<CSSStyleSheet> sheet;
  199. if (!sheet.cell()) {
  200. extern StringView default_stylesheet_source;
  201. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), default_stylesheet_source));
  202. }
  203. return *sheet;
  204. }
  205. static CSSStyleSheet& quirks_mode_stylesheet(DOM::Document const& document)
  206. {
  207. static JS::Handle<CSSStyleSheet> sheet;
  208. if (!sheet.cell()) {
  209. extern StringView quirks_mode_stylesheet_source;
  210. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), quirks_mode_stylesheet_source));
  211. }
  212. return *sheet;
  213. }
  214. static CSSStyleSheet& mathml_stylesheet(DOM::Document const& document)
  215. {
  216. static JS::Handle<CSSStyleSheet> sheet;
  217. if (!sheet.cell()) {
  218. extern StringView mathml_stylesheet_source;
  219. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), mathml_stylesheet_source));
  220. }
  221. return *sheet;
  222. }
  223. static CSSStyleSheet& svg_stylesheet(DOM::Document const& document)
  224. {
  225. static JS::Handle<CSSStyleSheet> sheet;
  226. if (!sheet.cell()) {
  227. extern StringView svg_stylesheet_source;
  228. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), svg_stylesheet_source));
  229. }
  230. return *sheet;
  231. }
  232. template<typename Callback>
  233. void StyleComputer::for_each_stylesheet(CascadeOrigin cascade_origin, Callback callback) const
  234. {
  235. if (cascade_origin == CascadeOrigin::UserAgent) {
  236. callback(default_stylesheet(document()), {});
  237. if (document().in_quirks_mode())
  238. callback(quirks_mode_stylesheet(document()), {});
  239. callback(mathml_stylesheet(document()), {});
  240. callback(svg_stylesheet(document()), {});
  241. }
  242. if (cascade_origin == CascadeOrigin::User) {
  243. if (m_user_style_sheet)
  244. callback(*m_user_style_sheet, {});
  245. }
  246. if (cascade_origin == CascadeOrigin::Author) {
  247. document().for_each_css_style_sheet([&](CSSStyleSheet& sheet) {
  248. callback(sheet, {});
  249. });
  250. const_cast<DOM::Document&>(document()).for_each_shadow_root([&](DOM::ShadowRoot& shadow_root) {
  251. shadow_root.for_each_css_style_sheet([&](CSSStyleSheet& sheet) {
  252. callback(sheet, &shadow_root);
  253. });
  254. });
  255. }
  256. }
  257. StyleComputer::RuleCache const& StyleComputer::rule_cache_for_cascade_origin(CascadeOrigin cascade_origin) const
  258. {
  259. switch (cascade_origin) {
  260. case CascadeOrigin::Author:
  261. return *m_author_rule_cache;
  262. case CascadeOrigin::User:
  263. return *m_user_rule_cache;
  264. case CascadeOrigin::UserAgent:
  265. return *m_user_agent_rule_cache;
  266. default:
  267. TODO();
  268. }
  269. }
  270. [[nodiscard]] static bool filter_namespace_rule(DOM::Element const& element, MatchingRule const& rule)
  271. {
  272. // FIXME: Filter out non-default namespace using prefixes
  273. if (auto namespace_rule = rule.sheet->default_namespace_rule()) {
  274. if (namespace_rule->namespace_uri() != element.namespace_uri())
  275. return false;
  276. }
  277. return true;
  278. }
  279. bool StyleComputer::should_reject_with_ancestor_filter(Selector const& selector) const
  280. {
  281. for (u32 hash : selector.ancestor_hashes()) {
  282. if (hash == 0)
  283. break;
  284. if (!m_ancestor_filter.may_contain(hash))
  285. return true;
  286. }
  287. return false;
  288. }
  289. Vector<MatchingRule> StyleComputer::collect_matching_rules(DOM::Element const& element, CascadeOrigin cascade_origin, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  290. {
  291. auto const& root_node = element.root();
  292. auto shadow_root = is<DOM::ShadowRoot>(root_node) ? static_cast<DOM::ShadowRoot const*>(&root_node) : nullptr;
  293. auto const& rule_cache = rule_cache_for_cascade_origin(cascade_origin);
  294. Vector<MatchingRule, 512> rules_to_run;
  295. auto add_rules_to_run = [&](Vector<MatchingRule> const& rules) {
  296. rules_to_run.grow_capacity(rules_to_run.size() + rules.size());
  297. if (pseudo_element.has_value()) {
  298. for (auto const& rule : rules) {
  299. if (rule.contains_pseudo_element && filter_namespace_rule(element, rule))
  300. rules_to_run.unchecked_append(rule);
  301. }
  302. } else {
  303. for (auto const& rule : rules) {
  304. if (!rule.contains_pseudo_element && filter_namespace_rule(element, rule))
  305. rules_to_run.unchecked_append(rule);
  306. }
  307. }
  308. };
  309. for (auto const& class_name : element.class_names()) {
  310. if (auto it = rule_cache.rules_by_class.find(class_name); it != rule_cache.rules_by_class.end())
  311. add_rules_to_run(it->value);
  312. }
  313. if (auto id = element.id(); id.has_value()) {
  314. if (auto it = rule_cache.rules_by_id.find(id.value()); it != rule_cache.rules_by_id.end())
  315. add_rules_to_run(it->value);
  316. }
  317. if (auto it = rule_cache.rules_by_tag_name.find(element.local_name()); it != rule_cache.rules_by_tag_name.end())
  318. add_rules_to_run(it->value);
  319. if (pseudo_element.has_value())
  320. add_rules_to_run(rule_cache.pseudo_element_rules);
  321. if (element.is_document_element())
  322. add_rules_to_run(rule_cache.root_rules);
  323. element.for_each_attribute([&](auto& name, auto&) {
  324. if (auto it = rule_cache.rules_by_attribute_name.find(name); it != rule_cache.rules_by_attribute_name.end()) {
  325. add_rules_to_run(it->value);
  326. }
  327. });
  328. add_rules_to_run(rule_cache.other_rules);
  329. Vector<MatchingRule> matching_rules;
  330. matching_rules.ensure_capacity(rules_to_run.size());
  331. for (auto const& rule_to_run : rules_to_run) {
  332. // FIXME: This needs to be revised when adding support for the :host and ::shadow selectors, which transition shadow tree boundaries
  333. auto rule_root = rule_to_run.shadow_root;
  334. auto from_user_agent_or_user_stylesheet = rule_to_run.cascade_origin == CascadeOrigin::UserAgent || rule_to_run.cascade_origin == CascadeOrigin::User;
  335. if (rule_root != shadow_root && !from_user_agent_or_user_stylesheet)
  336. continue;
  337. auto const& selector = rule_to_run.rule->selectors()[rule_to_run.selector_index];
  338. if (should_reject_with_ancestor_filter(*selector))
  339. continue;
  340. if (rule_to_run.can_use_fast_matches) {
  341. if (!SelectorEngine::fast_matches(selector, *rule_to_run.sheet, element))
  342. continue;
  343. } else {
  344. if (!SelectorEngine::matches(selector, *rule_to_run.sheet, element, pseudo_element))
  345. continue;
  346. }
  347. matching_rules.append(rule_to_run);
  348. }
  349. return matching_rules;
  350. }
  351. static void sort_matching_rules(Vector<MatchingRule>& matching_rules)
  352. {
  353. quick_sort(matching_rules, [&](MatchingRule& a, MatchingRule& b) {
  354. auto const& a_selector = a.rule->selectors()[a.selector_index];
  355. auto const& b_selector = b.rule->selectors()[b.selector_index];
  356. auto a_specificity = a_selector->specificity();
  357. auto b_specificity = b_selector->specificity();
  358. if (a_specificity == b_specificity) {
  359. if (a.style_sheet_index == b.style_sheet_index)
  360. return a.rule_index < b.rule_index;
  361. return a.style_sheet_index < b.style_sheet_index;
  362. }
  363. return a_specificity < b_specificity;
  364. });
  365. }
  366. void StyleComputer::for_each_property_expanding_shorthands(PropertyID property_id, StyleValue const& value, AllowUnresolved allow_unresolved, Function<void(PropertyID, StyleValue const&)> const& set_longhand_property)
  367. {
  368. auto map_logical_property_to_real_property = [](PropertyID property_id) -> Optional<PropertyID> {
  369. // FIXME: Honor writing-mode, direction and text-orientation.
  370. switch (property_id) {
  371. case PropertyID::MarginBlockStart:
  372. return PropertyID::MarginTop;
  373. case PropertyID::MarginBlockEnd:
  374. return PropertyID::MarginBottom;
  375. case PropertyID::MarginInlineStart:
  376. return PropertyID::MarginLeft;
  377. case PropertyID::MarginInlineEnd:
  378. return PropertyID::MarginRight;
  379. case PropertyID::PaddingBlockStart:
  380. return PropertyID::PaddingTop;
  381. case PropertyID::PaddingBlockEnd:
  382. return PropertyID::PaddingBottom;
  383. case PropertyID::PaddingInlineStart:
  384. return PropertyID::PaddingLeft;
  385. case PropertyID::PaddingInlineEnd:
  386. return PropertyID::PaddingRight;
  387. case PropertyID::InlineSize:
  388. return PropertyID::Width;
  389. case PropertyID::InsetBlockStart:
  390. return PropertyID::Top;
  391. case PropertyID::InsetBlockEnd:
  392. return PropertyID::Bottom;
  393. case PropertyID::InsetInlineStart:
  394. return PropertyID::Left;
  395. case PropertyID::InsetInlineEnd:
  396. return PropertyID::Right;
  397. case PropertyID::WebkitAlignContent:
  398. return PropertyID::AlignContent;
  399. case PropertyID::WebkitAlignItems:
  400. return PropertyID::AlignItems;
  401. case PropertyID::WebkitAlignSelf:
  402. return PropertyID::AlignSelf;
  403. case PropertyID::WebkitAnimation:
  404. return PropertyID::Animation;
  405. case PropertyID::WebkitAnimationDelay:
  406. return PropertyID::AnimationDelay;
  407. case PropertyID::WebkitAnimationDirection:
  408. return PropertyID::AnimationDirection;
  409. case PropertyID::WebkitAnimationDuration:
  410. return PropertyID::AnimationDuration;
  411. case PropertyID::WebkitAnimationFillMode:
  412. return PropertyID::AnimationFillMode;
  413. case PropertyID::WebkitAnimationIterationCount:
  414. return PropertyID::AnimationIterationCount;
  415. case PropertyID::WebkitAnimationName:
  416. return PropertyID::AnimationName;
  417. case PropertyID::WebkitAnimationPlayState:
  418. return PropertyID::AnimationPlayState;
  419. case PropertyID::WebkitAnimationTimingFunction:
  420. return PropertyID::AnimationTimingFunction;
  421. case PropertyID::WebkitAppearance:
  422. return PropertyID::Appearance;
  423. case PropertyID::WebkitBackgroundClip:
  424. return PropertyID::BackgroundClip;
  425. case PropertyID::WebkitBackgroundOrigin:
  426. return PropertyID::BackgroundOrigin;
  427. case PropertyID::WebkitBorderBottomLeftRadius:
  428. return PropertyID::BorderBottomLeftRadius;
  429. case PropertyID::WebkitBorderBottomRightRadius:
  430. return PropertyID::BorderBottomRightRadius;
  431. case PropertyID::WebkitBorderRadius:
  432. return PropertyID::BorderRadius;
  433. case PropertyID::WebkitBorderTopLeftRadius:
  434. return PropertyID::BorderTopLeftRadius;
  435. case PropertyID::WebkitBorderTopRightRadius:
  436. return PropertyID::BorderTopRightRadius;
  437. case PropertyID::WebkitBoxShadow:
  438. return PropertyID::BoxShadow;
  439. case PropertyID::WebkitBoxSizing:
  440. return PropertyID::BoxSizing;
  441. case PropertyID::WebkitFlex:
  442. return PropertyID::Flex;
  443. case PropertyID::WebkitFlexBasis:
  444. return PropertyID::FlexBasis;
  445. case PropertyID::WebkitFlexDirection:
  446. return PropertyID::FlexDirection;
  447. case PropertyID::WebkitFlexFlow:
  448. return PropertyID::FlexFlow;
  449. case PropertyID::WebkitFlexWrap:
  450. return PropertyID::FlexWrap;
  451. case PropertyID::WebkitJustifyContent:
  452. return PropertyID::JustifyContent;
  453. case PropertyID::WebkitMask:
  454. return PropertyID::Mask;
  455. case PropertyID::WebkitOrder:
  456. return PropertyID::Order;
  457. case PropertyID::WebkitTransform:
  458. return PropertyID::Transform;
  459. case PropertyID::WebkitTransformOrigin:
  460. return PropertyID::TransformOrigin;
  461. case PropertyID::WebkitTransition:
  462. return PropertyID::Transition;
  463. case PropertyID::WebkitTransitionDelay:
  464. return PropertyID::TransitionDelay;
  465. case PropertyID::WebkitTransitionDuration:
  466. return PropertyID::TransitionDuration;
  467. case PropertyID::WebkitTransitionProperty:
  468. return PropertyID::TransitionProperty;
  469. case PropertyID::WebkitTransitionTimingFunction:
  470. return PropertyID::TransitionTimingFunction;
  471. default:
  472. return {};
  473. }
  474. };
  475. struct StartAndEndPropertyIDs {
  476. PropertyID start;
  477. PropertyID end;
  478. };
  479. auto map_logical_property_to_real_properties = [](PropertyID property_id) -> Optional<StartAndEndPropertyIDs> {
  480. // FIXME: Honor writing-mode, direction and text-orientation.
  481. switch (property_id) {
  482. case PropertyID::MarginBlock:
  483. return StartAndEndPropertyIDs { PropertyID::MarginTop, PropertyID::MarginBottom };
  484. case PropertyID::MarginInline:
  485. return StartAndEndPropertyIDs { PropertyID::MarginLeft, PropertyID::MarginRight };
  486. case PropertyID::PaddingBlock:
  487. return StartAndEndPropertyIDs { PropertyID::PaddingTop, PropertyID::PaddingBottom };
  488. case PropertyID::PaddingInline:
  489. return StartAndEndPropertyIDs { PropertyID::PaddingLeft, PropertyID::PaddingRight };
  490. case PropertyID::InsetBlock:
  491. return StartAndEndPropertyIDs { PropertyID::Top, PropertyID::Bottom };
  492. case PropertyID::InsetInline:
  493. return StartAndEndPropertyIDs { PropertyID::Left, PropertyID::Right };
  494. default:
  495. return {};
  496. }
  497. };
  498. if (auto real_property_id = map_logical_property_to_real_property(property_id); real_property_id.has_value()) {
  499. for_each_property_expanding_shorthands(real_property_id.value(), value, allow_unresolved, set_longhand_property);
  500. return;
  501. }
  502. if (auto real_property_ids = map_logical_property_to_real_properties(property_id); real_property_ids.has_value()) {
  503. if (value.is_value_list() && value.as_value_list().size() == 2) {
  504. auto const& start = value.as_value_list().values()[0];
  505. auto const& end = value.as_value_list().values()[1];
  506. for_each_property_expanding_shorthands(real_property_ids->start, start, allow_unresolved, set_longhand_property);
  507. for_each_property_expanding_shorthands(real_property_ids->end, end, allow_unresolved, set_longhand_property);
  508. return;
  509. }
  510. for_each_property_expanding_shorthands(real_property_ids->start, value, allow_unresolved, set_longhand_property);
  511. for_each_property_expanding_shorthands(real_property_ids->end, value, allow_unresolved, set_longhand_property);
  512. return;
  513. }
  514. if (value.is_shorthand()) {
  515. auto& shorthand_value = value.as_shorthand();
  516. auto& properties = shorthand_value.sub_properties();
  517. auto& values = shorthand_value.values();
  518. for (size_t i = 0; i < properties.size(); ++i)
  519. for_each_property_expanding_shorthands(properties[i], values[i], allow_unresolved, set_longhand_property);
  520. return;
  521. }
  522. auto assign_edge_values = [&](PropertyID top_property, PropertyID right_property, PropertyID bottom_property, PropertyID left_property, auto const& values) {
  523. if (values.size() == 4) {
  524. set_longhand_property(top_property, values[0]);
  525. set_longhand_property(right_property, values[1]);
  526. set_longhand_property(bottom_property, values[2]);
  527. set_longhand_property(left_property, values[3]);
  528. } else if (values.size() == 3) {
  529. set_longhand_property(top_property, values[0]);
  530. set_longhand_property(right_property, values[1]);
  531. set_longhand_property(bottom_property, values[2]);
  532. set_longhand_property(left_property, values[1]);
  533. } else if (values.size() == 2) {
  534. set_longhand_property(top_property, values[0]);
  535. set_longhand_property(right_property, values[1]);
  536. set_longhand_property(bottom_property, values[0]);
  537. set_longhand_property(left_property, values[1]);
  538. } else if (values.size() == 1) {
  539. set_longhand_property(top_property, values[0]);
  540. set_longhand_property(right_property, values[0]);
  541. set_longhand_property(bottom_property, values[0]);
  542. set_longhand_property(left_property, values[0]);
  543. }
  544. };
  545. if (property_id == CSS::PropertyID::Border) {
  546. for_each_property_expanding_shorthands(CSS::PropertyID::BorderTop, value, allow_unresolved, set_longhand_property);
  547. for_each_property_expanding_shorthands(CSS::PropertyID::BorderRight, value, allow_unresolved, set_longhand_property);
  548. for_each_property_expanding_shorthands(CSS::PropertyID::BorderBottom, value, allow_unresolved, set_longhand_property);
  549. for_each_property_expanding_shorthands(CSS::PropertyID::BorderLeft, value, allow_unresolved, set_longhand_property);
  550. // FIXME: Also reset border-image, in line with the spec: https://www.w3.org/TR/css-backgrounds-3/#border-shorthands
  551. return;
  552. }
  553. if (property_id == CSS::PropertyID::BorderStyle) {
  554. if (value.is_value_list()) {
  555. auto const& values_list = value.as_value_list();
  556. assign_edge_values(PropertyID::BorderTopStyle, PropertyID::BorderRightStyle, PropertyID::BorderBottomStyle, PropertyID::BorderLeftStyle, values_list.values());
  557. return;
  558. }
  559. set_longhand_property(CSS::PropertyID::BorderTopStyle, value);
  560. set_longhand_property(CSS::PropertyID::BorderRightStyle, value);
  561. set_longhand_property(CSS::PropertyID::BorderBottomStyle, value);
  562. set_longhand_property(CSS::PropertyID::BorderLeftStyle, value);
  563. return;
  564. }
  565. if (property_id == CSS::PropertyID::BorderWidth) {
  566. if (value.is_value_list()) {
  567. auto const& values_list = value.as_value_list();
  568. assign_edge_values(PropertyID::BorderTopWidth, PropertyID::BorderRightWidth, PropertyID::BorderBottomWidth, PropertyID::BorderLeftWidth, values_list.values());
  569. return;
  570. }
  571. set_longhand_property(CSS::PropertyID::BorderTopWidth, value);
  572. set_longhand_property(CSS::PropertyID::BorderRightWidth, value);
  573. set_longhand_property(CSS::PropertyID::BorderBottomWidth, value);
  574. set_longhand_property(CSS::PropertyID::BorderLeftWidth, value);
  575. return;
  576. }
  577. if (property_id == CSS::PropertyID::BorderColor) {
  578. if (value.is_value_list()) {
  579. auto const& values_list = value.as_value_list();
  580. assign_edge_values(PropertyID::BorderTopColor, PropertyID::BorderRightColor, PropertyID::BorderBottomColor, PropertyID::BorderLeftColor, values_list.values());
  581. return;
  582. }
  583. set_longhand_property(CSS::PropertyID::BorderTopColor, value);
  584. set_longhand_property(CSS::PropertyID::BorderRightColor, value);
  585. set_longhand_property(CSS::PropertyID::BorderBottomColor, value);
  586. set_longhand_property(CSS::PropertyID::BorderLeftColor, value);
  587. return;
  588. }
  589. if (property_id == CSS::PropertyID::BackgroundPosition) {
  590. if (value.is_position()) {
  591. auto const& position = value.as_position();
  592. set_longhand_property(CSS::PropertyID::BackgroundPositionX, position.edge_x());
  593. set_longhand_property(CSS::PropertyID::BackgroundPositionY, position.edge_y());
  594. } else if (value.is_value_list()) {
  595. // Expand background-position layer list into separate lists for x and y positions:
  596. auto const& values_list = value.as_value_list();
  597. StyleValueVector x_positions {};
  598. StyleValueVector y_positions {};
  599. x_positions.ensure_capacity(values_list.size());
  600. y_positions.ensure_capacity(values_list.size());
  601. for (auto& layer : values_list.values()) {
  602. if (layer->is_position()) {
  603. auto const& position = layer->as_position();
  604. x_positions.unchecked_append(position.edge_x());
  605. y_positions.unchecked_append(position.edge_y());
  606. } else {
  607. x_positions.unchecked_append(layer);
  608. y_positions.unchecked_append(layer);
  609. }
  610. }
  611. set_longhand_property(CSS::PropertyID::BackgroundPositionX, StyleValueList::create(move(x_positions), values_list.separator()));
  612. set_longhand_property(CSS::PropertyID::BackgroundPositionY, StyleValueList::create(move(y_positions), values_list.separator()));
  613. } else {
  614. set_longhand_property(CSS::PropertyID::BackgroundPositionX, value);
  615. set_longhand_property(CSS::PropertyID::BackgroundPositionY, value);
  616. }
  617. return;
  618. }
  619. if (property_id == CSS::PropertyID::Inset) {
  620. if (value.is_value_list()) {
  621. auto const& values_list = value.as_value_list();
  622. assign_edge_values(PropertyID::Top, PropertyID::Right, PropertyID::Bottom, PropertyID::Left, values_list.values());
  623. return;
  624. }
  625. set_longhand_property(CSS::PropertyID::Top, value);
  626. set_longhand_property(CSS::PropertyID::Right, value);
  627. set_longhand_property(CSS::PropertyID::Bottom, value);
  628. set_longhand_property(CSS::PropertyID::Left, value);
  629. return;
  630. }
  631. if (property_id == CSS::PropertyID::Margin) {
  632. if (value.is_value_list()) {
  633. auto const& values_list = value.as_value_list();
  634. assign_edge_values(PropertyID::MarginTop, PropertyID::MarginRight, PropertyID::MarginBottom, PropertyID::MarginLeft, values_list.values());
  635. return;
  636. }
  637. set_longhand_property(CSS::PropertyID::MarginTop, value);
  638. set_longhand_property(CSS::PropertyID::MarginRight, value);
  639. set_longhand_property(CSS::PropertyID::MarginBottom, value);
  640. set_longhand_property(CSS::PropertyID::MarginLeft, value);
  641. return;
  642. }
  643. if (property_id == CSS::PropertyID::Padding) {
  644. if (value.is_value_list()) {
  645. auto const& values_list = value.as_value_list();
  646. assign_edge_values(PropertyID::PaddingTop, PropertyID::PaddingRight, PropertyID::PaddingBottom, PropertyID::PaddingLeft, values_list.values());
  647. return;
  648. }
  649. set_longhand_property(CSS::PropertyID::PaddingTop, value);
  650. set_longhand_property(CSS::PropertyID::PaddingRight, value);
  651. set_longhand_property(CSS::PropertyID::PaddingBottom, value);
  652. set_longhand_property(CSS::PropertyID::PaddingLeft, value);
  653. return;
  654. }
  655. if (property_id == CSS::PropertyID::Gap || property_id == CSS::PropertyID::GridGap) {
  656. if (value.is_value_list()) {
  657. auto const& values_list = value.as_value_list();
  658. set_longhand_property(CSS::PropertyID::RowGap, values_list.values()[0]);
  659. set_longhand_property(CSS::PropertyID::ColumnGap, values_list.values()[1]);
  660. return;
  661. }
  662. set_longhand_property(CSS::PropertyID::RowGap, value);
  663. set_longhand_property(CSS::PropertyID::ColumnGap, value);
  664. return;
  665. }
  666. if (property_id == CSS::PropertyID::RowGap || property_id == CSS::PropertyID::GridRowGap) {
  667. set_longhand_property(CSS::PropertyID::RowGap, value);
  668. return;
  669. }
  670. if (property_id == CSS::PropertyID::ColumnGap || property_id == CSS::PropertyID::GridColumnGap) {
  671. set_longhand_property(CSS::PropertyID::ColumnGap, value);
  672. return;
  673. }
  674. if (property_id == CSS::PropertyID::MaxInlineSize || property_id == CSS::PropertyID::MinInlineSize) {
  675. // FIXME: Use writing-mode to determine if we should set width or height.
  676. bool is_horizontal = true;
  677. if (is_horizontal) {
  678. if (property_id == CSS::PropertyID::MaxInlineSize) {
  679. set_longhand_property(CSS::PropertyID::MaxWidth, value);
  680. } else {
  681. set_longhand_property(CSS::PropertyID::MinWidth, value);
  682. }
  683. } else {
  684. if (property_id == CSS::PropertyID::MaxInlineSize) {
  685. set_longhand_property(CSS::PropertyID::MaxHeight, value);
  686. } else {
  687. set_longhand_property(CSS::PropertyID::MinHeight, value);
  688. }
  689. }
  690. return;
  691. }
  692. if (property_id == CSS::PropertyID::Transition) {
  693. if (!value.is_transition()) {
  694. // Handle `none` as a shorthand for `all 0s ease 0s`.
  695. set_longhand_property(CSS::PropertyID::TransitionProperty, IdentifierStyleValue::create(CSS::ValueID::All));
  696. set_longhand_property(CSS::PropertyID::TransitionDuration, TimeStyleValue::create(CSS::Time::make_seconds(0)));
  697. set_longhand_property(CSS::PropertyID::TransitionDelay, TimeStyleValue::create(CSS::Time::make_seconds(0)));
  698. set_longhand_property(CSS::PropertyID::TransitionTimingFunction, IdentifierStyleValue::create(CSS::ValueID::Ease));
  699. return;
  700. }
  701. auto const& transitions = value.as_transition().transitions();
  702. Array<Vector<ValueComparingNonnullRefPtr<StyleValue const>>, 4> transition_values;
  703. for (auto const& transition : transitions) {
  704. transition_values[0].append(*transition.property_name);
  705. transition_values[1].append(transition.duration.as_style_value());
  706. transition_values[2].append(transition.delay.as_style_value());
  707. if (transition.easing)
  708. transition_values[3].append(*transition.easing);
  709. }
  710. set_longhand_property(CSS::PropertyID::TransitionProperty, StyleValueList::create(move(transition_values[0]), StyleValueList::Separator::Comma));
  711. set_longhand_property(CSS::PropertyID::TransitionDuration, StyleValueList::create(move(transition_values[1]), StyleValueList::Separator::Comma));
  712. set_longhand_property(CSS::PropertyID::TransitionDelay, StyleValueList::create(move(transition_values[2]), StyleValueList::Separator::Comma));
  713. set_longhand_property(CSS::PropertyID::TransitionTimingFunction, StyleValueList::create(move(transition_values[3]), StyleValueList::Separator::Comma));
  714. return;
  715. }
  716. if (property_id == CSS::PropertyID::Float) {
  717. auto ident = value.to_identifier();
  718. // FIXME: Honor writing-mode, direction and text-orientation.
  719. if (ident == CSS::ValueID::InlineStart) {
  720. set_longhand_property(CSS::PropertyID::Float, IdentifierStyleValue::create(CSS::ValueID::Left));
  721. return;
  722. } else if (ident == CSS::ValueID::InlineEnd) {
  723. set_longhand_property(CSS::PropertyID::Float, IdentifierStyleValue::create(CSS::ValueID::Right));
  724. return;
  725. }
  726. }
  727. if (property_is_shorthand(property_id)) {
  728. // ShorthandStyleValue was handled already.
  729. // That means if we got here, that `value` must be a CSS-wide keyword, which we should apply to our longhand properties.
  730. // We don't directly call `set_longhand_property()` because the longhands might have longhands of their own.
  731. // (eg `grid` -> `grid-template` -> `grid-template-areas` & `grid-template-rows` & `grid-template-columns`)
  732. // Forget this requirement if we're ignoring unresolved values and the value is unresolved.
  733. VERIFY(value.is_css_wide_keyword() || (allow_unresolved == AllowUnresolved::Yes && value.is_unresolved()));
  734. for (auto longhand : longhands_for_shorthand(property_id))
  735. for_each_property_expanding_shorthands(longhand, value, allow_unresolved, set_longhand_property);
  736. return;
  737. }
  738. set_longhand_property(property_id, value);
  739. }
  740. void StyleComputer::set_property_expanding_shorthands(StyleProperties& style, CSS::PropertyID property_id, StyleValue const& value, CSS::CSSStyleDeclaration const* declaration, StyleProperties::PropertyValues const& properties_for_revert, StyleProperties::Important important)
  741. {
  742. for_each_property_expanding_shorthands(property_id, value, AllowUnresolved::No, [&](PropertyID shorthand_id, StyleValue const& shorthand_value) {
  743. if (shorthand_value.is_revert()) {
  744. auto& property_in_previous_cascade_origin = properties_for_revert[to_underlying(shorthand_id)];
  745. if (property_in_previous_cascade_origin.style)
  746. style.set_property(shorthand_id, *property_in_previous_cascade_origin.style, property_in_previous_cascade_origin.declaration, StyleProperties::Inherited::No, important);
  747. } else {
  748. style.set_property(shorthand_id, shorthand_value, declaration, StyleProperties::Inherited::No, important);
  749. }
  750. });
  751. }
  752. void StyleComputer::set_all_properties(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, StyleProperties& style, StyleValue const& value, DOM::Document& document, CSS::CSSStyleDeclaration const* declaration, StyleProperties::PropertyValues const& properties_for_revert, StyleProperties::Important important) const
  753. {
  754. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  755. auto property_id = (CSS::PropertyID)i;
  756. if (value.is_revert()) {
  757. style.m_property_values[to_underlying(property_id)] = properties_for_revert[to_underlying(property_id)];
  758. style.m_property_values[to_underlying(property_id)].important = important;
  759. continue;
  760. }
  761. if (value.is_unset()) {
  762. if (is_inherited_property(property_id))
  763. style.m_property_values[to_underlying(property_id)] = { get_inherit_value(document.realm(), property_id, &element, pseudo_element), nullptr };
  764. else
  765. style.m_property_values[to_underlying(property_id)] = { property_initial_value(document.realm(), property_id), nullptr };
  766. style.m_property_values[to_underlying(property_id)].important = important;
  767. continue;
  768. }
  769. NonnullRefPtr<StyleValue> property_value = value;
  770. if (property_value->is_unresolved())
  771. property_value = Parser::Parser::resolve_unresolved_style_value(Parser::ParsingContext { document }, element, pseudo_element, property_id, property_value->as_unresolved());
  772. if (!property_value->is_unresolved())
  773. set_property_expanding_shorthands(style, property_id, property_value, declaration, properties_for_revert);
  774. style.m_property_values[to_underlying(property_id)].important = important;
  775. set_property_expanding_shorthands(style, property_id, value, declaration, properties_for_revert, important);
  776. }
  777. }
  778. void StyleComputer::cascade_declarations(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, Vector<MatchingRule> const& matching_rules, CascadeOrigin cascade_origin, Important important) const
  779. {
  780. auto properties_for_revert = style.properties();
  781. for (auto const& match : matching_rules) {
  782. for (auto const& property : match.rule->declaration().properties()) {
  783. if (important != property.important)
  784. continue;
  785. if (property.property_id == CSS::PropertyID::All) {
  786. set_all_properties(element, pseudo_element, style, property.value, m_document, &match.rule->declaration(), properties_for_revert, important == Important::Yes ? StyleProperties::Important::Yes : StyleProperties::Important::No);
  787. continue;
  788. }
  789. auto property_value = property.value;
  790. if (property.value->is_unresolved())
  791. property_value = Parser::Parser::resolve_unresolved_style_value(Parser::ParsingContext { document() }, element, pseudo_element, property.property_id, property.value->as_unresolved());
  792. if (!property_value->is_unresolved())
  793. set_property_expanding_shorthands(style, property.property_id, property_value, &match.rule->declaration(), properties_for_revert, important == Important::Yes ? StyleProperties::Important::Yes : StyleProperties::Important::No);
  794. }
  795. }
  796. if (cascade_origin == CascadeOrigin::Author && !pseudo_element.has_value()) {
  797. if (auto const inline_style = element.inline_style()) {
  798. for (auto const& property : inline_style->properties()) {
  799. if (important != property.important)
  800. continue;
  801. if (property.property_id == CSS::PropertyID::All) {
  802. set_all_properties(element, pseudo_element, style, property.value, m_document, inline_style, properties_for_revert, important == Important::Yes ? StyleProperties::Important::Yes : StyleProperties::Important::No);
  803. continue;
  804. }
  805. auto property_value = property.value;
  806. if (property.value->is_unresolved())
  807. property_value = Parser::Parser::resolve_unresolved_style_value(Parser::ParsingContext { document() }, element, pseudo_element, property.property_id, property.value->as_unresolved());
  808. if (!property_value->is_unresolved())
  809. set_property_expanding_shorthands(style, property.property_id, property_value, inline_style, properties_for_revert, important == Important::Yes ? StyleProperties::Important::Yes : StyleProperties::Important::No);
  810. }
  811. }
  812. }
  813. }
  814. static void cascade_custom_properties(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, Vector<MatchingRule> const& matching_rules)
  815. {
  816. size_t needed_capacity = 0;
  817. for (auto const& matching_rule : matching_rules)
  818. needed_capacity += matching_rule.rule->declaration().custom_properties().size();
  819. if (!pseudo_element.has_value()) {
  820. if (auto const inline_style = element.inline_style())
  821. needed_capacity += inline_style->custom_properties().size();
  822. }
  823. HashMap<FlyString, StyleProperty> custom_properties;
  824. custom_properties.ensure_capacity(needed_capacity);
  825. for (auto const& matching_rule : matching_rules) {
  826. for (auto const& it : matching_rule.rule->declaration().custom_properties())
  827. custom_properties.set(it.key, it.value);
  828. }
  829. if (!pseudo_element.has_value()) {
  830. if (auto const inline_style = element.inline_style()) {
  831. for (auto const& it : inline_style->custom_properties())
  832. custom_properties.set(it.key, it.value);
  833. }
  834. }
  835. element.set_custom_properties(pseudo_element, move(custom_properties));
  836. }
  837. static NonnullRefPtr<StyleValue const> interpolate_value(DOM::Element& element, StyleValue const& from, StyleValue const& to, float delta);
  838. template<typename T>
  839. static T interpolate_raw(T from, T to, float delta)
  840. {
  841. if constexpr (IsSame<T, double>) {
  842. return from + (to - from) * static_cast<double>(delta);
  843. } else {
  844. return static_cast<RemoveCVReference<T>>(from + (to - from) * delta);
  845. }
  846. }
  847. // A null return value means the interpolated matrix was not invertible or otherwise invalid
  848. static RefPtr<StyleValue const> interpolate_transform(DOM::Element& element, StyleValue const& from, StyleValue const& to, float delta)
  849. {
  850. // Note that the spec uses column-major notation, so all the matrix indexing is reversed.
  851. static constexpr auto make_transformation = [](TransformationStyleValue const& transformation) -> Optional<Transformation> {
  852. Vector<TransformValue> values;
  853. for (auto const& value : transformation.values()) {
  854. switch (value->type()) {
  855. case StyleValue::Type::Angle:
  856. values.append(AngleOrCalculated { value->as_angle().angle() });
  857. break;
  858. case StyleValue::Type::Calculated:
  859. values.append(LengthPercentage { value->as_calculated() });
  860. break;
  861. case StyleValue::Type::Length:
  862. values.append(LengthPercentage { value->as_length().length() });
  863. break;
  864. case StyleValue::Type::Percentage:
  865. values.append(LengthPercentage { value->as_percentage().percentage() });
  866. break;
  867. case StyleValue::Type::Number:
  868. values.append(NumberPercentage { Number(Number::Type::Number, value->as_number().number()) });
  869. break;
  870. default:
  871. return {};
  872. }
  873. }
  874. return Transformation { transformation.transform_function(), move(values) };
  875. };
  876. static constexpr auto transformation_style_value_to_matrix = [](DOM::Element& element, TransformationStyleValue const& value) -> Optional<FloatMatrix4x4> {
  877. auto transformation = make_transformation(value.as_transformation());
  878. if (!transformation.has_value())
  879. return {};
  880. Optional<Painting::PaintableBox const&> paintable_box;
  881. if (auto layout_node = element.layout_node()) {
  882. if (auto paintable = layout_node->paintable(); paintable && is<Painting::PaintableBox>(paintable))
  883. paintable_box = *static_cast<Painting::PaintableBox*>(paintable);
  884. }
  885. if (auto matrix = transformation->to_matrix(paintable_box); !matrix.is_error())
  886. return matrix.value();
  887. return {};
  888. };
  889. static constexpr auto style_value_to_matrix = [](DOM::Element& element, StyleValue const& value) -> FloatMatrix4x4 {
  890. if (value.is_transformation())
  891. return transformation_style_value_to_matrix(element, value.as_transformation()).value_or(FloatMatrix4x4::identity());
  892. // This encompasses both the allowed value "none" and any invalid values
  893. if (!value.is_value_list())
  894. return FloatMatrix4x4::identity();
  895. auto matrix = FloatMatrix4x4::identity();
  896. for (auto const& value_element : value.as_value_list().values()) {
  897. if (value_element->is_transformation()) {
  898. if (auto value_matrix = transformation_style_value_to_matrix(element, value_element->as_transformation()); value_matrix.has_value())
  899. matrix = matrix * value_matrix.value();
  900. }
  901. }
  902. return matrix;
  903. };
  904. struct DecomposedValues {
  905. FloatVector3 translation;
  906. FloatVector3 scale;
  907. FloatVector3 skew;
  908. FloatVector4 rotation;
  909. FloatVector4 perspective;
  910. };
  911. // https://drafts.csswg.org/css-transforms-2/#decomposing-a-3d-matrix
  912. static constexpr auto decompose = [](FloatMatrix4x4 matrix) -> Optional<DecomposedValues> {
  913. // https://drafts.csswg.org/css-transforms-1/#supporting-functions
  914. static constexpr auto combine = [](auto a, auto b, float ascl, float bscl) {
  915. return FloatVector3 {
  916. ascl * a[0] + bscl * b[0],
  917. ascl * a[1] + bscl * b[1],
  918. ascl * a[2] + bscl * b[2],
  919. };
  920. };
  921. // Normalize the matrix.
  922. if (matrix(3, 3) == 0.f)
  923. return {};
  924. for (int i = 0; i < 4; i++)
  925. for (int j = 0; j < 4; j++)
  926. matrix(i, j) /= matrix(3, 3);
  927. // perspectiveMatrix is used to solve for perspective, but it also provides
  928. // an easy way to test for singularity of the upper 3x3 component.
  929. auto perspective_matrix = matrix;
  930. for (int i = 0; i < 3; i++)
  931. perspective_matrix(3, i) = 0.f;
  932. perspective_matrix(3, 3) = 1.f;
  933. if (!perspective_matrix.is_invertible())
  934. return {};
  935. DecomposedValues values;
  936. // First, isolate perspective.
  937. if (matrix(3, 0) != 0.f || matrix(3, 1) != 0.f || matrix(3, 2) != 0.f) {
  938. // rightHandSide is the right hand side of the equation.
  939. // Note: It is the bottom side in a row-major matrix
  940. FloatVector4 bottom_side = {
  941. matrix(3, 0),
  942. matrix(3, 1),
  943. matrix(3, 2),
  944. matrix(3, 3),
  945. };
  946. // Solve the equation by inverting perspectiveMatrix and multiplying
  947. // rightHandSide by the inverse.
  948. auto inverse_perspective_matrix = perspective_matrix.inverse();
  949. auto transposed_inverse_perspective_matrix = inverse_perspective_matrix.transpose();
  950. values.perspective = transposed_inverse_perspective_matrix * bottom_side;
  951. } else {
  952. // No perspective.
  953. values.perspective = { 0.0, 0.0, 0.0, 1.0 };
  954. }
  955. // Next take care of translation
  956. for (int i = 0; i < 3; i++)
  957. values.translation[i] = matrix(i, 3);
  958. // Now get scale and shear. 'row' is a 3 element array of 3 component vectors
  959. FloatVector3 row[3];
  960. for (int i = 0; i < 3; i++)
  961. row[i] = { matrix(0, i), matrix(1, i), matrix(2, i) };
  962. // Compute X scale factor and normalize first row.
  963. values.scale[0] = row[0].length();
  964. row[0].normalize();
  965. // Compute XY shear factor and make 2nd row orthogonal to 1st.
  966. values.skew[0] = row[0].dot(row[1]);
  967. row[1] = combine(row[1], row[0], 1.f, -values.skew[0]);
  968. // Now, compute Y scale and normalize 2nd row.
  969. values.scale[1] = row[1].length();
  970. row[1].normalize();
  971. values.skew[0] /= values.scale[1];
  972. // Compute XZ and YZ shears, orthogonalize 3rd row
  973. values.skew[1] = row[0].dot(row[2]);
  974. row[2] = combine(row[2], row[0], 1.f, -values.skew[1]);
  975. values.skew[2] = row[1].dot(row[2]);
  976. row[2] = combine(row[2], row[1], 1.f, -values.skew[2]);
  977. // Next, get Z scale and normalize 3rd row.
  978. values.scale[2] = row[2].length();
  979. row[2].normalize();
  980. values.skew[1] /= values.scale[2];
  981. values.skew[2] /= values.scale[2];
  982. // At this point, the matrix (in rows) is orthonormal.
  983. // Check for a coordinate system flip. If the determinant
  984. // is -1, then negate the matrix and the scaling factors.
  985. auto pdum3 = row[1].cross(row[2]);
  986. if (row[0].dot(pdum3) < 0.f) {
  987. for (int i = 0; i < 3; i++) {
  988. values.scale[i] *= -1.f;
  989. row[i][0] *= -1.f;
  990. row[i][1] *= -1.f;
  991. row[i][2] *= -1.f;
  992. }
  993. }
  994. // Now, get the rotations out
  995. values.rotation[0] = 0.5f * sqrt(max(1.f + row[0][0] - row[1][1] - row[2][2], 0.f));
  996. values.rotation[1] = 0.5f * sqrt(max(1.f - row[0][0] + row[1][1] - row[2][2], 0.f));
  997. values.rotation[2] = 0.5f * sqrt(max(1.f - row[0][0] - row[1][1] + row[2][2], 0.f));
  998. values.rotation[3] = 0.5f * sqrt(max(1.f + row[0][0] + row[1][1] + row[2][2], 0.f));
  999. if (row[2][1] > row[1][2])
  1000. values.rotation[0] = -values.rotation[0];
  1001. if (row[0][2] > row[2][0])
  1002. values.rotation[1] = -values.rotation[1];
  1003. if (row[1][0] > row[0][1])
  1004. values.rotation[2] = -values.rotation[2];
  1005. // FIXME: This accounts for the fact that the browser coordinate system is left-handed instead of right-handed.
  1006. // The reason for this is that the positive Y-axis direction points down instead of up. To fix this, we
  1007. // invert the Y axis. However, it feels like the spec pseudo-code above should have taken something like
  1008. // this into account, so we're probably doing something else wrong.
  1009. values.rotation[2] *= -1;
  1010. return values;
  1011. };
  1012. // https://drafts.csswg.org/css-transforms-2/#recomposing-to-a-3d-matrix
  1013. static constexpr auto recompose = [](DecomposedValues const& values) -> FloatMatrix4x4 {
  1014. auto matrix = FloatMatrix4x4::identity();
  1015. // apply perspective
  1016. for (int i = 0; i < 4; i++)
  1017. matrix(3, i) = values.perspective[i];
  1018. // apply translation
  1019. for (int i = 0; i < 4; i++) {
  1020. for (int j = 0; j < 3; j++)
  1021. matrix(i, 3) += values.translation[j] * matrix(i, j);
  1022. }
  1023. // apply rotation
  1024. auto x = values.rotation[0];
  1025. auto y = values.rotation[1];
  1026. auto z = values.rotation[2];
  1027. auto w = values.rotation[3];
  1028. // Construct a composite rotation matrix from the quaternion values
  1029. // rotationMatrix is a identity 4x4 matrix initially
  1030. auto rotation_matrix = FloatMatrix4x4::identity();
  1031. rotation_matrix(0, 0) = 1.f - 2.f * (y * y + z * z);
  1032. rotation_matrix(1, 0) = 2.f * (x * y - z * w);
  1033. rotation_matrix(2, 0) = 2.f * (x * z + y * w);
  1034. rotation_matrix(0, 1) = 2.f * (x * y + z * w);
  1035. rotation_matrix(1, 1) = 1.f - 2.f * (x * x + z * z);
  1036. rotation_matrix(2, 1) = 2.f * (y * z - x * w);
  1037. rotation_matrix(0, 2) = 2.f * (x * z - y * w);
  1038. rotation_matrix(1, 2) = 2.f * (y * z + x * w);
  1039. rotation_matrix(2, 2) = 1.f - 2.f * (x * x + y * y);
  1040. matrix = matrix * rotation_matrix;
  1041. // apply skew
  1042. // temp is a identity 4x4 matrix initially
  1043. auto temp = FloatMatrix4x4::identity();
  1044. if (values.skew[2] != 0.f) {
  1045. temp(1, 2) = values.skew[2];
  1046. matrix = matrix * temp;
  1047. }
  1048. if (values.skew[1] != 0.f) {
  1049. temp(1, 2) = 0.f;
  1050. temp(0, 2) = values.skew[1];
  1051. matrix = matrix * temp;
  1052. }
  1053. if (values.skew[0] != 0.f) {
  1054. temp(0, 2) = 0.f;
  1055. temp(0, 1) = values.skew[0];
  1056. matrix = matrix * temp;
  1057. }
  1058. // apply scale
  1059. for (int i = 0; i < 3; i++) {
  1060. for (int j = 0; j < 4; j++)
  1061. matrix(j, i) *= values.scale[i];
  1062. }
  1063. return matrix;
  1064. };
  1065. // https://drafts.csswg.org/css-transforms-2/#interpolation-of-decomposed-3d-matrix-values
  1066. static constexpr auto interpolate = [](DecomposedValues& from, DecomposedValues& to, float delta) -> DecomposedValues {
  1067. auto product = clamp(from.rotation.dot(to.rotation), -1.0f, 1.0f);
  1068. FloatVector4 interpolated_rotation;
  1069. if (fabsf(product) == 1.0f) {
  1070. interpolated_rotation = from.rotation;
  1071. } else {
  1072. auto theta = acos(product);
  1073. auto w = sin(delta * theta) / sqrtf(1.0f - product * product);
  1074. for (int i = 0; i < 4; i++) {
  1075. from.rotation[i] *= cos(delta * theta) - product * w;
  1076. to.rotation[i] *= w;
  1077. interpolated_rotation[i] = from.rotation[i] + to.rotation[i];
  1078. }
  1079. }
  1080. return {
  1081. interpolate_raw(from.translation, to.translation, delta),
  1082. interpolate_raw(from.scale, to.scale, delta),
  1083. interpolate_raw(from.skew, to.skew, delta),
  1084. interpolated_rotation,
  1085. interpolate_raw(from.perspective, to.perspective, delta),
  1086. };
  1087. };
  1088. auto from_matrix = style_value_to_matrix(element, from);
  1089. auto to_matrix = style_value_to_matrix(element, to);
  1090. auto from_decomposed = decompose(from_matrix);
  1091. auto to_decomposed = decompose(to_matrix);
  1092. if (!from_decomposed.has_value() || !to_decomposed.has_value())
  1093. return {};
  1094. auto interpolated_decomposed = interpolate(from_decomposed.value(), to_decomposed.value(), delta);
  1095. auto interpolated = recompose(interpolated_decomposed);
  1096. StyleValueVector values;
  1097. values.ensure_capacity(16);
  1098. for (int i = 0; i < 16; i++)
  1099. values.append(NumberStyleValue::create(static_cast<double>(interpolated(i % 4, i / 4))));
  1100. return StyleValueList::create({ TransformationStyleValue::create(TransformFunction::Matrix3d, move(values)) }, StyleValueList::Separator::Comma);
  1101. }
  1102. static Color interpolate_color(Color from, Color to, float delta)
  1103. {
  1104. // https://drafts.csswg.org/css-color/#interpolation-space
  1105. // If the host syntax does not define what color space interpolation should take place in, it defaults to Oklab.
  1106. auto from_oklab = from.to_oklab();
  1107. auto to_oklab = to.to_oklab();
  1108. auto color = Color::from_oklab(
  1109. interpolate_raw(from_oklab.L, to_oklab.L, delta),
  1110. interpolate_raw(from_oklab.a, to_oklab.a, delta),
  1111. interpolate_raw(from_oklab.b, to_oklab.b, delta));
  1112. color.set_alpha(interpolate_raw(from.alpha(), to.alpha(), delta));
  1113. return color;
  1114. }
  1115. static NonnullRefPtr<StyleValue const> interpolate_box_shadow(DOM::Element& element, StyleValue const& from, StyleValue const& to, float delta)
  1116. {
  1117. // https://drafts.csswg.org/css-backgrounds/#box-shadow
  1118. // Animation type: by computed value, treating none as a zero-item list and appending blank shadows
  1119. // (transparent 0 0 0 0) with a corresponding inset keyword as needed to match the longer list if
  1120. // the shorter list is otherwise compatible with the longer one
  1121. static constexpr auto process_list = [](StyleValue const& value) {
  1122. StyleValueVector shadows;
  1123. if (value.is_value_list()) {
  1124. for (auto const& element : value.as_value_list().values()) {
  1125. if (element->is_shadow())
  1126. shadows.append(element);
  1127. }
  1128. } else if (value.is_shadow()) {
  1129. shadows.append(value);
  1130. } else if (!value.is_identifier() || value.as_identifier().id() != ValueID::None) {
  1131. VERIFY_NOT_REACHED();
  1132. }
  1133. return shadows;
  1134. };
  1135. static constexpr auto extend_list_if_necessary = [](StyleValueVector& values, StyleValueVector const& other) {
  1136. values.ensure_capacity(other.size());
  1137. for (size_t i = values.size(); i < other.size(); i++) {
  1138. values.unchecked_append(ShadowStyleValue::create(
  1139. Color::Transparent,
  1140. LengthStyleValue::create(Length::make_px(0)),
  1141. LengthStyleValue::create(Length::make_px(0)),
  1142. LengthStyleValue::create(Length::make_px(0)),
  1143. LengthStyleValue::create(Length::make_px(0)),
  1144. other[i]->as_shadow().placement()));
  1145. }
  1146. };
  1147. StyleValueVector from_shadows = process_list(from);
  1148. StyleValueVector to_shadows = process_list(to);
  1149. extend_list_if_necessary(from_shadows, to_shadows);
  1150. extend_list_if_necessary(to_shadows, from_shadows);
  1151. VERIFY(from_shadows.size() == to_shadows.size());
  1152. StyleValueVector result_shadows;
  1153. result_shadows.ensure_capacity(from_shadows.size());
  1154. for (size_t i = 0; i < from_shadows.size(); i++) {
  1155. auto const& from_shadow = from_shadows[i]->as_shadow();
  1156. auto const& to_shadow = to_shadows[i]->as_shadow();
  1157. auto result_shadow = ShadowStyleValue::create(
  1158. interpolate_color(from_shadow.color(), to_shadow.color(), delta),
  1159. interpolate_value(element, from_shadow.offset_x(), to_shadow.offset_x(), delta),
  1160. interpolate_value(element, from_shadow.offset_y(), to_shadow.offset_y(), delta),
  1161. interpolate_value(element, from_shadow.blur_radius(), to_shadow.blur_radius(), delta),
  1162. interpolate_value(element, from_shadow.spread_distance(), to_shadow.spread_distance(), delta),
  1163. delta >= 0.5f ? to_shadow.placement() : from_shadow.placement());
  1164. result_shadows.unchecked_append(result_shadow);
  1165. }
  1166. return StyleValueList::create(move(result_shadows), StyleValueList::Separator::Comma);
  1167. }
  1168. static NonnullRefPtr<StyleValue const> interpolate_value(DOM::Element& element, StyleValue const& from, StyleValue const& to, float delta)
  1169. {
  1170. if (from.type() != to.type()) {
  1171. // Handle mixed percentage and dimension types
  1172. // https://www.w3.org/TR/css-values-4/#mixed-percentages
  1173. struct NumericBaseTypeAndDefault {
  1174. CSSNumericType::BaseType base_type;
  1175. ValueComparingNonnullRefPtr<CSS::StyleValue> default_value;
  1176. };
  1177. static constexpr auto numeric_base_type_and_default = [](StyleValue const& value) -> Optional<NumericBaseTypeAndDefault> {
  1178. switch (value.type()) {
  1179. case StyleValue::Type::Angle: {
  1180. static auto default_angle_value = AngleStyleValue::create(Angle::make_degrees(0));
  1181. return NumericBaseTypeAndDefault { CSSNumericType::BaseType::Angle, default_angle_value };
  1182. }
  1183. case StyleValue::Type::Frequency: {
  1184. static auto default_frequency_value = FrequencyStyleValue::create(Frequency::make_hertz(0));
  1185. return NumericBaseTypeAndDefault { CSSNumericType::BaseType::Frequency, default_frequency_value };
  1186. }
  1187. case StyleValue::Type::Length: {
  1188. static auto default_length_value = LengthStyleValue::create(Length::make_px(0));
  1189. return NumericBaseTypeAndDefault { CSSNumericType::BaseType::Length, default_length_value };
  1190. }
  1191. case StyleValue::Type::Percentage: {
  1192. static auto default_percentage_value = PercentageStyleValue::create(Percentage { 0.0 });
  1193. return NumericBaseTypeAndDefault { CSSNumericType::BaseType::Percent, default_percentage_value };
  1194. }
  1195. case StyleValue::Type::Time: {
  1196. static auto default_time_value = TimeStyleValue::create(Time::make_seconds(0));
  1197. return NumericBaseTypeAndDefault { CSSNumericType::BaseType::Time, default_time_value };
  1198. }
  1199. default:
  1200. return {};
  1201. }
  1202. };
  1203. static constexpr auto to_calculation_node = [](StyleValue const& value) -> NonnullOwnPtr<CalculationNode> {
  1204. switch (value.type()) {
  1205. case StyleValue::Type::Angle:
  1206. return NumericCalculationNode::create(value.as_angle().angle());
  1207. case StyleValue::Type::Frequency:
  1208. return NumericCalculationNode::create(value.as_frequency().frequency());
  1209. case StyleValue::Type::Length:
  1210. return NumericCalculationNode::create(value.as_length().length());
  1211. case StyleValue::Type::Percentage:
  1212. return NumericCalculationNode::create(value.as_percentage().percentage());
  1213. case StyleValue::Type::Time:
  1214. return NumericCalculationNode::create(value.as_time().time());
  1215. default:
  1216. VERIFY_NOT_REACHED();
  1217. }
  1218. };
  1219. auto from_base_type_and_default = numeric_base_type_and_default(from);
  1220. auto to_base_type_and_default = numeric_base_type_and_default(to);
  1221. if (from_base_type_and_default.has_value() && to_base_type_and_default.has_value() && (from_base_type_and_default->base_type == CSSNumericType::BaseType::Percent || to_base_type_and_default->base_type == CSSNumericType::BaseType::Percent)) {
  1222. // This is an interpolation from a numeric unit to a percentage, or vice versa. The trick here is to
  1223. // interpolate two separate values. For example, consider an interpolation from 30px to 80%. It's quite
  1224. // hard to understand how this interpolation works, but if instead we rewrite the values as "30px + 0%" and
  1225. // "0px + 80%", then it is very simple to understand; we just interpolate each component separately.
  1226. auto interpolated_from = interpolate_value(element, from, from_base_type_and_default->default_value, delta);
  1227. auto interpolated_to = interpolate_value(element, to_base_type_and_default->default_value, to, delta);
  1228. Vector<NonnullOwnPtr<CalculationNode>> values;
  1229. values.ensure_capacity(2);
  1230. values.unchecked_append(to_calculation_node(interpolated_from));
  1231. values.unchecked_append(to_calculation_node(interpolated_to));
  1232. auto calc_node = SumCalculationNode::create(move(values));
  1233. return CalculatedStyleValue::create(move(calc_node), CSSNumericType { to_base_type_and_default->base_type, 1 });
  1234. }
  1235. return delta >= 0.5f ? to : from;
  1236. }
  1237. switch (from.type()) {
  1238. case StyleValue::Type::Angle:
  1239. return AngleStyleValue::create(Angle::make_degrees(interpolate_raw(from.as_angle().angle().to_degrees(), to.as_angle().angle().to_degrees(), delta)));
  1240. case StyleValue::Type::Color:
  1241. return ColorStyleValue::create(interpolate_color(from.as_color().color(), to.as_color().color(), delta));
  1242. case StyleValue::Type::Integer:
  1243. return IntegerStyleValue::create(interpolate_raw(from.as_integer().integer(), to.as_integer().integer(), delta));
  1244. case StyleValue::Type::Length: {
  1245. auto& from_length = from.as_length().length();
  1246. auto& to_length = to.as_length().length();
  1247. return LengthStyleValue::create(Length(interpolate_raw(from_length.raw_value(), to_length.raw_value(), delta), from_length.type()));
  1248. }
  1249. case StyleValue::Type::Number:
  1250. return NumberStyleValue::create(interpolate_raw(from.as_number().number(), to.as_number().number(), delta));
  1251. case StyleValue::Type::Percentage:
  1252. return PercentageStyleValue::create(Percentage(interpolate_raw(from.as_percentage().percentage().value(), to.as_percentage().percentage().value(), delta)));
  1253. case StyleValue::Type::Position: {
  1254. // https://www.w3.org/TR/css-values-4/#combine-positions
  1255. // FIXME: Interpolation of <position> is defined as the independent interpolation of each component (x, y) normalized as an offset from the top left corner as a <length-percentage>.
  1256. auto& from_position = from.as_position();
  1257. auto& to_position = to.as_position();
  1258. return PositionStyleValue::create(
  1259. interpolate_value(element, from_position.edge_x(), to_position.edge_x(), delta)->as_edge(),
  1260. interpolate_value(element, from_position.edge_y(), to_position.edge_y(), delta)->as_edge());
  1261. }
  1262. case StyleValue::Type::Ratio: {
  1263. auto from_ratio = from.as_ratio().ratio();
  1264. auto to_ratio = to.as_ratio().ratio();
  1265. // The interpolation of a <ratio> is defined by converting each <ratio> to a number by dividing the first value
  1266. // by the second (so a ratio of 3 / 2 would become 1.5), taking the logarithm of that result (so the 1.5 would
  1267. // become approximately 0.176), then interpolating those values. The result during the interpolation is
  1268. // converted back to a <ratio> by inverting the logarithm, then interpreting the result as a <ratio> with the
  1269. // result as the first value and 1 as the second value.
  1270. auto from_number = log(from_ratio.value());
  1271. auto to_number = log(to_ratio.value());
  1272. auto interp_number = interpolate_raw(from_number, to_number, delta);
  1273. return RatioStyleValue::create(Ratio(pow(M_E, interp_number)));
  1274. }
  1275. case StyleValue::Type::Rect: {
  1276. auto from_rect = from.as_rect().rect();
  1277. auto to_rect = to.as_rect().rect();
  1278. return RectStyleValue::create({
  1279. Length(interpolate_raw(from_rect.top_edge.raw_value(), to_rect.top_edge.raw_value(), delta), from_rect.top_edge.type()),
  1280. Length(interpolate_raw(from_rect.right_edge.raw_value(), to_rect.right_edge.raw_value(), delta), from_rect.right_edge.type()),
  1281. Length(interpolate_raw(from_rect.bottom_edge.raw_value(), to_rect.bottom_edge.raw_value(), delta), from_rect.bottom_edge.type()),
  1282. Length(interpolate_raw(from_rect.left_edge.raw_value(), to_rect.left_edge.raw_value(), delta), from_rect.left_edge.type()),
  1283. });
  1284. }
  1285. case StyleValue::Type::Transformation:
  1286. VERIFY_NOT_REACHED();
  1287. case StyleValue::Type::ValueList: {
  1288. auto& from_list = from.as_value_list();
  1289. auto& to_list = to.as_value_list();
  1290. if (from_list.size() != to_list.size())
  1291. return from;
  1292. StyleValueVector interpolated_values;
  1293. interpolated_values.ensure_capacity(from_list.size());
  1294. for (size_t i = 0; i < from_list.size(); ++i)
  1295. interpolated_values.append(interpolate_value(element, from_list.values()[i], to_list.values()[i], delta));
  1296. return StyleValueList::create(move(interpolated_values), from_list.separator());
  1297. }
  1298. default:
  1299. return from;
  1300. }
  1301. }
  1302. static ValueComparingRefPtr<StyleValue const> interpolate_property(DOM::Element& element, PropertyID property_id, StyleValue const& from, StyleValue const& to, float delta)
  1303. {
  1304. auto animation_type = animation_type_from_longhand_property(property_id);
  1305. switch (animation_type) {
  1306. case AnimationType::ByComputedValue:
  1307. return interpolate_value(element, from, to, delta);
  1308. case AnimationType::None:
  1309. return to;
  1310. case AnimationType::Custom: {
  1311. if (property_id == PropertyID::Transform) {
  1312. if (auto interpolated_transform = interpolate_transform(element, from, to, delta))
  1313. return *interpolated_transform;
  1314. // https://drafts.csswg.org/css-transforms-1/#interpolation-of-transforms
  1315. // In some cases, an animation might cause a transformation matrix to be singular or non-invertible.
  1316. // For example, an animation in which scale moves from 1 to -1. At the time when the matrix is in
  1317. // such a state, the transformed element is not rendered.
  1318. return {};
  1319. }
  1320. if (property_id == PropertyID::BoxShadow)
  1321. return interpolate_box_shadow(element, from, to, delta);
  1322. // FIXME: Handle all custom animatable properties
  1323. [[fallthrough]];
  1324. }
  1325. // FIXME: Handle repeatable-list animatable properties
  1326. case AnimationType::RepeatableList:
  1327. case AnimationType::Discrete:
  1328. default:
  1329. return delta >= 0.5f ? to : from;
  1330. }
  1331. }
  1332. void StyleComputer::collect_animation_into(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, JS::NonnullGCPtr<Animations::KeyframeEffect> effect, StyleProperties& style_properties, AnimationRefresh refresh) const
  1333. {
  1334. auto animation = effect->associated_animation();
  1335. if (!animation)
  1336. return;
  1337. auto output_progress = effect->transformed_progress();
  1338. if (!output_progress.has_value())
  1339. return;
  1340. if (!effect->key_frame_set())
  1341. return;
  1342. auto& keyframes = effect->key_frame_set()->keyframes_by_key;
  1343. auto key = static_cast<u64>(output_progress.value() * 100.0 * Animations::KeyframeEffect::AnimationKeyFrameKeyScaleFactor);
  1344. auto matching_keyframe_it = keyframes.find_largest_not_above_iterator(key);
  1345. if (matching_keyframe_it.is_end()) {
  1346. if constexpr (LIBWEB_CSS_ANIMATION_DEBUG) {
  1347. dbgln(" Did not find any start keyframe for the current state ({}) :(", key);
  1348. dbgln(" (have {} keyframes)", keyframes.size());
  1349. for (auto it = keyframes.begin(); it != keyframes.end(); ++it)
  1350. dbgln(" - {}", it.key());
  1351. }
  1352. return;
  1353. }
  1354. auto keyframe_start = matching_keyframe_it.key();
  1355. auto keyframe_values = *matching_keyframe_it;
  1356. auto initial_keyframe_it = matching_keyframe_it;
  1357. auto keyframe_end_it = ++matching_keyframe_it;
  1358. if (keyframe_end_it.is_end())
  1359. keyframe_end_it = initial_keyframe_it;
  1360. auto keyframe_end = keyframe_end_it.key();
  1361. auto keyframe_end_values = *keyframe_end_it;
  1362. auto progress_in_keyframe = [&] {
  1363. if (keyframe_start == keyframe_end)
  1364. return 0.f;
  1365. return static_cast<float>(key - keyframe_start) / static_cast<float>(keyframe_end - keyframe_start);
  1366. }();
  1367. if constexpr (LIBWEB_CSS_ANIMATION_DEBUG) {
  1368. auto valid_properties = keyframe_values.properties.size();
  1369. dbgln("Animation {} contains {} properties to interpolate, progress = {}%", animation->id(), valid_properties, progress_in_keyframe * 100);
  1370. }
  1371. for (auto const& it : keyframe_values.properties) {
  1372. auto resolve_property = [&](auto& property) {
  1373. return property.visit(
  1374. [&](Animations::KeyframeEffect::KeyFrameSet::UseInitial) -> RefPtr<StyleValue const> {
  1375. if (refresh == AnimationRefresh::Yes)
  1376. return {};
  1377. return style_properties.maybe_null_property(it.key);
  1378. },
  1379. [&](RefPtr<StyleValue const> value) -> RefPtr<StyleValue const> {
  1380. if (value->is_unresolved())
  1381. return Parser::Parser::resolve_unresolved_style_value(Parser::ParsingContext { element.document() }, element, pseudo_element, it.key, value->as_unresolved());
  1382. return value;
  1383. });
  1384. };
  1385. auto resolved_start_property = resolve_property(it.value);
  1386. auto const& end_property = keyframe_end_values.properties.get(it.key);
  1387. if (!end_property.has_value()) {
  1388. if (resolved_start_property) {
  1389. style_properties.set_animated_property(it.key, *resolved_start_property);
  1390. dbgln_if(LIBWEB_CSS_ANIMATION_DEBUG, "No end property for property {}, using {}", string_from_property_id(it.key), resolved_start_property->to_string());
  1391. }
  1392. continue;
  1393. }
  1394. auto resolved_end_property = resolve_property(end_property.value());
  1395. if (resolved_end_property && !resolved_start_property)
  1396. resolved_start_property = CSS::property_initial_value(document().realm(), it.key);
  1397. if (!resolved_start_property || !resolved_end_property)
  1398. continue;
  1399. auto start = resolved_start_property.release_nonnull();
  1400. auto end = resolved_end_property.release_nonnull();
  1401. if (style_properties.is_property_important(it.key)) {
  1402. continue;
  1403. }
  1404. if (auto next_value = interpolate_property(*effect->target(), it.key, *start, *end, progress_in_keyframe)) {
  1405. dbgln_if(LIBWEB_CSS_ANIMATION_DEBUG, "Interpolated value for property {} at {}: {} -> {} = {}", string_from_property_id(it.key), progress_in_keyframe, start->to_string(), end->to_string(), next_value->to_string());
  1406. style_properties.set_animated_property(it.key, *next_value);
  1407. } else {
  1408. // If interpolate_property() fails, the element should not be rendered
  1409. dbgln_if(LIBWEB_CSS_ANIMATION_DEBUG, "Interpolated value for property {} at {}: {} -> {} is invalid", string_from_property_id(it.key), progress_in_keyframe, start->to_string(), end->to_string());
  1410. style_properties.set_animated_property(PropertyID::Visibility, IdentifierStyleValue::create(ValueID::Hidden));
  1411. }
  1412. }
  1413. }
  1414. static void apply_animation_properties(DOM::Document& document, StyleProperties& style, Animations::Animation& animation)
  1415. {
  1416. auto& effect = verify_cast<Animations::KeyframeEffect>(*animation.effect());
  1417. Optional<CSS::Time> duration;
  1418. if (auto duration_value = style.maybe_null_property(PropertyID::AnimationDuration); duration_value) {
  1419. if (duration_value->is_time()) {
  1420. duration = duration_value->as_time().time();
  1421. } else if (duration_value->is_identifier() && duration_value->as_identifier().id() == ValueID::Auto) {
  1422. // We use empty optional to represent "auto".
  1423. duration = {};
  1424. }
  1425. }
  1426. CSS::Time delay { 0, CSS::Time::Type::S };
  1427. if (auto delay_value = style.maybe_null_property(PropertyID::AnimationDelay); delay_value && delay_value->is_time())
  1428. delay = delay_value->as_time().time();
  1429. double iteration_count = 1.0;
  1430. if (auto iteration_count_value = style.maybe_null_property(PropertyID::AnimationIterationCount); iteration_count_value) {
  1431. if (iteration_count_value->is_identifier() && iteration_count_value->to_identifier() == ValueID::Infinite)
  1432. iteration_count = HUGE_VAL;
  1433. else if (iteration_count_value->is_number())
  1434. iteration_count = iteration_count_value->as_number().number();
  1435. }
  1436. CSS::AnimationFillMode fill_mode { CSS::AnimationFillMode::None };
  1437. if (auto fill_mode_property = style.maybe_null_property(PropertyID::AnimationFillMode); fill_mode_property && fill_mode_property->is_identifier()) {
  1438. if (auto fill_mode_value = value_id_to_animation_fill_mode(fill_mode_property->to_identifier()); fill_mode_value.has_value())
  1439. fill_mode = *fill_mode_value;
  1440. }
  1441. CSS::AnimationDirection direction { CSS::AnimationDirection::Normal };
  1442. if (auto direction_property = style.maybe_null_property(PropertyID::AnimationDirection); direction_property && direction_property->is_identifier()) {
  1443. if (auto direction_value = value_id_to_animation_direction(direction_property->to_identifier()); direction_value.has_value())
  1444. direction = *direction_value;
  1445. }
  1446. CSS::AnimationPlayState play_state { CSS::AnimationPlayState::Running };
  1447. if (auto play_state_property = style.maybe_null_property(PropertyID::AnimationPlayState); play_state_property && play_state_property->is_identifier()) {
  1448. if (auto play_state_value = value_id_to_animation_play_state(play_state_property->to_identifier()); play_state_value.has_value())
  1449. play_state = *play_state_value;
  1450. }
  1451. CSS::EasingStyleValue::Function timing_function { CSS::EasingStyleValue::CubicBezier::ease() };
  1452. if (auto timing_property = style.maybe_null_property(PropertyID::AnimationTimingFunction); timing_property && timing_property->is_easing())
  1453. timing_function = timing_property->as_easing().function();
  1454. auto iteration_duration = duration.has_value()
  1455. ? Variant<double, String> { duration.release_value().to_milliseconds() }
  1456. : "auto"_string;
  1457. effect.set_iteration_duration(iteration_duration);
  1458. effect.set_start_delay(delay.to_milliseconds());
  1459. effect.set_iteration_count(iteration_count);
  1460. effect.set_timing_function(move(timing_function));
  1461. effect.set_fill_mode(Animations::css_fill_mode_to_bindings_fill_mode(fill_mode));
  1462. effect.set_playback_direction(Animations::css_animation_direction_to_bindings_playback_direction(direction));
  1463. if (play_state != effect.last_css_animation_play_state()) {
  1464. if (play_state == CSS::AnimationPlayState::Running && animation.play_state() == Bindings::AnimationPlayState::Paused) {
  1465. HTML::TemporaryExecutionContext context(document.relevant_settings_object());
  1466. animation.play().release_value_but_fixme_should_propagate_errors();
  1467. } else if (play_state == CSS::AnimationPlayState::Paused && animation.play_state() != Bindings::AnimationPlayState::Paused) {
  1468. HTML::TemporaryExecutionContext context(document.relevant_settings_object());
  1469. animation.pause().release_value_but_fixme_should_propagate_errors();
  1470. }
  1471. effect.set_last_css_animation_play_state(play_state);
  1472. }
  1473. }
  1474. static void apply_dimension_attribute(StyleProperties& style, DOM::Element const& element, FlyString const& attribute_name, CSS::PropertyID property_id)
  1475. {
  1476. auto attribute = element.attribute(attribute_name);
  1477. if (!attribute.has_value())
  1478. return;
  1479. auto parsed_value = HTML::parse_dimension_value(*attribute);
  1480. if (!parsed_value)
  1481. return;
  1482. style.set_property(property_id, parsed_value.release_nonnull());
  1483. }
  1484. // https://www.w3.org/TR/css-cascade/#cascading
  1485. void StyleComputer::compute_cascaded_values(StyleProperties& style, DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, bool& did_match_any_pseudo_element_rules, ComputeStyleMode mode) const
  1486. {
  1487. // First, we collect all the CSS rules whose selectors match `element`:
  1488. MatchingRuleSet matching_rule_set;
  1489. matching_rule_set.user_agent_rules = collect_matching_rules(element, CascadeOrigin::UserAgent, pseudo_element);
  1490. sort_matching_rules(matching_rule_set.user_agent_rules);
  1491. matching_rule_set.user_rules = collect_matching_rules(element, CascadeOrigin::User, pseudo_element);
  1492. sort_matching_rules(matching_rule_set.user_rules);
  1493. matching_rule_set.author_rules = collect_matching_rules(element, CascadeOrigin::Author, pseudo_element);
  1494. sort_matching_rules(matching_rule_set.author_rules);
  1495. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded) {
  1496. VERIFY(pseudo_element.has_value());
  1497. if (matching_rule_set.author_rules.is_empty() && matching_rule_set.user_rules.is_empty() && matching_rule_set.user_agent_rules.is_empty()) {
  1498. did_match_any_pseudo_element_rules = false;
  1499. return;
  1500. }
  1501. did_match_any_pseudo_element_rules = true;
  1502. }
  1503. // Then we resolve all the CSS custom properties ("variables") for this element:
  1504. cascade_custom_properties(element, pseudo_element, matching_rule_set.author_rules);
  1505. // Then we apply the declarations from the matched rules in cascade order:
  1506. // Normal user agent declarations
  1507. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::No);
  1508. // Normal user declarations
  1509. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_rules, CascadeOrigin::User, Important::No);
  1510. // Author presentational hints (NOTE: The spec doesn't say exactly how to prioritize these.)
  1511. if (!pseudo_element.has_value()) {
  1512. element.apply_presentational_hints(style);
  1513. if (element.supports_dimension_attributes()) {
  1514. apply_dimension_attribute(style, element, HTML::AttributeNames::width, CSS::PropertyID::Width);
  1515. apply_dimension_attribute(style, element, HTML::AttributeNames::height, CSS::PropertyID::Height);
  1516. }
  1517. // SVG presentation attributes are parsed as CSS values, so we need to handle potential custom properties here.
  1518. if (element.is_svg_element()) {
  1519. // FIXME: This is not very efficient, we should only resolve the custom properties that are actually used.
  1520. for (auto i = to_underlying(CSS::first_property_id); i <= to_underlying(CSS::last_property_id); ++i) {
  1521. auto property_id = (CSS::PropertyID)i;
  1522. auto& property = style.m_property_values[i];
  1523. if (property.style && property.style->is_unresolved())
  1524. property.style = Parser::Parser::resolve_unresolved_style_value(Parser::ParsingContext { document() }, element, pseudo_element, property_id, property.style->as_unresolved());
  1525. }
  1526. }
  1527. }
  1528. // Normal author declarations
  1529. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::No);
  1530. // Animation declarations [css-animations-2]
  1531. auto animation_name = [&]() -> Optional<String> {
  1532. auto animation_name = style.maybe_null_property(PropertyID::AnimationName);
  1533. if (animation_name.is_null())
  1534. return OptionalNone {};
  1535. if (animation_name->is_string())
  1536. return animation_name->as_string().string_value().to_string();
  1537. return animation_name->to_string();
  1538. }();
  1539. if (animation_name.has_value()) {
  1540. if (auto source_declaration = style.property_source_declaration(PropertyID::AnimationName); source_declaration) {
  1541. auto& realm = element.realm();
  1542. if (source_declaration != element.cached_animation_name_source()) {
  1543. // This animation name is new, so we need to create a new animation for it.
  1544. if (auto existing_animation = element.cached_animation_name_animation())
  1545. existing_animation->cancel(Animations::Animation::ShouldInvalidate::No);
  1546. element.set_cached_animation_name_source(source_declaration);
  1547. auto effect = Animations::KeyframeEffect::create(realm);
  1548. auto animation = CSSAnimation::create(realm);
  1549. animation->set_id(animation_name.release_value());
  1550. animation->set_timeline(m_document->timeline());
  1551. animation->set_owning_element(element);
  1552. animation->set_effect(effect);
  1553. apply_animation_properties(m_document, style, animation);
  1554. if (pseudo_element.has_value())
  1555. effect->set_pseudo_element(Selector::PseudoElement { pseudo_element.value() });
  1556. auto const& rule_cache = rule_cache_for_cascade_origin(CascadeOrigin::Author);
  1557. if (auto keyframe_set = rule_cache.rules_by_animation_keyframes.get(animation->id()); keyframe_set.has_value())
  1558. effect->set_key_frame_set(keyframe_set.value());
  1559. effect->set_target(&element);
  1560. element.set_cached_animation_name_animation(animation);
  1561. HTML::TemporaryExecutionContext context(m_document->relevant_settings_object());
  1562. animation->play().release_value_but_fixme_should_propagate_errors();
  1563. } else {
  1564. // The animation hasn't changed, but some properties of the animation may have
  1565. apply_animation_properties(m_document, style, *element.cached_animation_name_animation());
  1566. }
  1567. }
  1568. } else {
  1569. // If the element had an existing animation, cancel it
  1570. if (auto existing_animation = element.cached_animation_name_animation()) {
  1571. existing_animation->cancel(Animations::Animation::ShouldInvalidate::No);
  1572. element.set_cached_animation_name_animation({});
  1573. element.set_cached_animation_name_source({});
  1574. }
  1575. }
  1576. auto animations = element.get_animations({ .subtree = false });
  1577. for (auto& animation : animations) {
  1578. if (auto effect = animation->effect(); effect && effect->is_keyframe_effect()) {
  1579. auto& keyframe_effect = *static_cast<Animations::KeyframeEffect*>(effect.ptr());
  1580. if (keyframe_effect.pseudo_element_type() == pseudo_element)
  1581. collect_animation_into(element, pseudo_element, keyframe_effect, style);
  1582. }
  1583. }
  1584. // Important author declarations
  1585. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::Yes);
  1586. // Important user declarations
  1587. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_rules, CascadeOrigin::User, Important::Yes);
  1588. // Important user agent declarations
  1589. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::Yes);
  1590. // FIXME: Transition declarations [css-transitions-1]
  1591. }
  1592. DOM::Element const* element_to_inherit_style_from(DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element)
  1593. {
  1594. // Pseudo-elements treat their originating element as their parent.
  1595. DOM::Element const* parent_element = nullptr;
  1596. if (pseudo_element.has_value()) {
  1597. parent_element = element;
  1598. } else if (element) {
  1599. parent_element = element->parent_or_shadow_host_element();
  1600. }
  1601. return parent_element;
  1602. }
  1603. NonnullRefPtr<StyleValue const> StyleComputer::get_inherit_value(JS::Realm& initial_value_context_realm, CSS::PropertyID property_id, DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element)
  1604. {
  1605. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1606. if (!parent_element || !parent_element->computed_css_values())
  1607. return property_initial_value(initial_value_context_realm, property_id);
  1608. return parent_element->computed_css_values()->property(property_id);
  1609. }
  1610. void StyleComputer::compute_defaulted_property_value(StyleProperties& style, DOM::Element const* element, CSS::PropertyID property_id, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1611. {
  1612. // FIXME: If we don't know the correct initial value for a property, we fall back to InitialStyleValue.
  1613. auto& value_slot = style.m_property_values[to_underlying(property_id)];
  1614. if (!value_slot.style) {
  1615. if (is_inherited_property(property_id))
  1616. style.m_property_values[to_underlying(property_id)] = { get_inherit_value(document().realm(), property_id, element, pseudo_element), nullptr, StyleProperties::Important::No, StyleProperties::Inherited::Yes };
  1617. else
  1618. style.m_property_values[to_underlying(property_id)] = { property_initial_value(document().realm(), property_id), nullptr };
  1619. return;
  1620. }
  1621. if (value_slot.style->is_initial()) {
  1622. value_slot.style = property_initial_value(document().realm(), property_id);
  1623. return;
  1624. }
  1625. if (value_slot.style->is_inherit()) {
  1626. value_slot.style = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  1627. value_slot.inherited = StyleProperties::Inherited::Yes;
  1628. return;
  1629. }
  1630. // https://www.w3.org/TR/css-cascade-4/#inherit-initial
  1631. // If the cascaded value of a property is the unset keyword,
  1632. if (value_slot.style->is_unset()) {
  1633. if (is_inherited_property(property_id)) {
  1634. // then if it is an inherited property, this is treated as inherit,
  1635. value_slot.style = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  1636. value_slot.inherited = StyleProperties::Inherited::Yes;
  1637. } else {
  1638. // and if it is not, this is treated as initial.
  1639. value_slot.style = property_initial_value(document().realm(), property_id);
  1640. }
  1641. }
  1642. }
  1643. // https://www.w3.org/TR/css-cascade/#defaulting
  1644. void StyleComputer::compute_defaulted_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1645. {
  1646. // Walk the list of all known CSS properties and:
  1647. // - Add them to `style` if they are missing.
  1648. // - Resolve `inherit` and `initial` as needed.
  1649. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  1650. auto property_id = (CSS::PropertyID)i;
  1651. compute_defaulted_property_value(style, element, property_id, pseudo_element);
  1652. }
  1653. // https://www.w3.org/TR/css-color-4/#resolving-other-colors
  1654. // In the color property, the used value of currentcolor is the inherited value.
  1655. auto color = style.property(CSS::PropertyID::Color);
  1656. if (color->to_identifier() == CSS::ValueID::Currentcolor) {
  1657. color = get_inherit_value(document().realm(), CSS::PropertyID::Color, element, pseudo_element);
  1658. style.set_property(CSS::PropertyID::Color, color);
  1659. }
  1660. }
  1661. Length::FontMetrics StyleComputer::calculate_root_element_font_metrics(StyleProperties const& style) const
  1662. {
  1663. auto root_value = style.property(CSS::PropertyID::FontSize);
  1664. auto font_pixel_metrics = style.first_available_computed_font().pixel_metrics();
  1665. Length::FontMetrics font_metrics { m_default_font_metrics.font_size, font_pixel_metrics };
  1666. font_metrics.font_size = root_value->as_length().length().to_px(viewport_rect(), font_metrics, font_metrics);
  1667. font_metrics.line_height = style.compute_line_height(viewport_rect(), font_metrics, font_metrics);
  1668. return font_metrics;
  1669. }
  1670. RefPtr<Gfx::FontCascadeList const> StyleComputer::find_matching_font_weight_ascending(Vector<MatchingFontCandidate> const& candidates, int target_weight, float font_size_in_pt, bool inclusive)
  1671. {
  1672. using Fn = AK::Function<bool(MatchingFontCandidate const&)>;
  1673. auto pred = inclusive ? Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight >= target_weight; })
  1674. : Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight > target_weight; });
  1675. auto it = find_if(candidates.begin(), candidates.end(), pred);
  1676. for (; it != candidates.end(); ++it) {
  1677. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1678. return found_font;
  1679. }
  1680. return {};
  1681. }
  1682. RefPtr<Gfx::FontCascadeList const> StyleComputer::find_matching_font_weight_descending(Vector<MatchingFontCandidate> const& candidates, int target_weight, float font_size_in_pt, bool inclusive)
  1683. {
  1684. using Fn = AK::Function<bool(MatchingFontCandidate const&)>;
  1685. auto pred = inclusive ? Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight <= target_weight; })
  1686. : Fn([&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight < target_weight; });
  1687. auto it = find_if(candidates.rbegin(), candidates.rend(), pred);
  1688. for (; it != candidates.rend(); ++it) {
  1689. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1690. return found_font;
  1691. }
  1692. return {};
  1693. }
  1694. // Partial implementation of the font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  1695. // FIXME: This should be replaced by the full CSS font selection algorithm.
  1696. RefPtr<Gfx::FontCascadeList const> StyleComputer::font_matching_algorithm(FontFaceKey const& key, float font_size_in_pt) const
  1697. {
  1698. // If a font family match occurs, the user agent assembles the set of font faces in that family and then
  1699. // narrows the set to a single face using other font properties in the order given below.
  1700. Vector<MatchingFontCandidate> matching_family_fonts;
  1701. for (auto const& font_key_and_loader : m_loaded_fonts) {
  1702. if (font_key_and_loader.key.family_name.equals_ignoring_ascii_case(key.family_name))
  1703. matching_family_fonts.empend(font_key_and_loader.key, const_cast<FontLoaderList*>(&font_key_and_loader.value));
  1704. }
  1705. Gfx::FontDatabase::the().for_each_typeface_with_family_name(key.family_name, [&](Gfx::Typeface const& typeface) {
  1706. matching_family_fonts.empend(
  1707. FontFaceKey {
  1708. .family_name = typeface.family(),
  1709. .weight = static_cast<int>(typeface.weight()),
  1710. .slope = typeface.slope(),
  1711. },
  1712. &typeface);
  1713. });
  1714. quick_sort(matching_family_fonts, [](auto const& a, auto const& b) {
  1715. return a.key.weight < b.key.weight;
  1716. });
  1717. // FIXME: 1. font-stretch is tried first.
  1718. // FIXME: 2. font-style is tried next.
  1719. // We don't have complete support of italic and oblique fonts, so matching on font-style can be simplified to:
  1720. // If a matching slope is found, all faces which don't have that matching slope are excluded from the matching set.
  1721. auto style_it = find_if(matching_family_fonts.begin(), matching_family_fonts.end(),
  1722. [&](auto const& matching_font_candidate) { return matching_font_candidate.key.slope == key.slope; });
  1723. if (style_it != matching_family_fonts.end()) {
  1724. matching_family_fonts.remove_all_matching([&](auto const& matching_font_candidate) {
  1725. return matching_font_candidate.key.slope != key.slope;
  1726. });
  1727. }
  1728. // 3. font-weight is matched next.
  1729. // If the desired weight is inclusively between 400 and 500, weights greater than or equal to the target weight
  1730. // are checked in ascending order until 500 is hit and checked, followed by weights less than the target weight
  1731. // in descending order, followed by weights greater than 500, until a match is found.
  1732. if (key.weight >= 400 && key.weight <= 500) {
  1733. auto it = find_if(matching_family_fonts.begin(), matching_family_fonts.end(),
  1734. [&](auto const& matching_font_candidate) { return matching_font_candidate.key.weight >= key.weight; });
  1735. for (; it != matching_family_fonts.end() && it->key.weight <= 500; ++it) {
  1736. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1737. return found_font;
  1738. }
  1739. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1740. return found_font;
  1741. for (; it != matching_family_fonts.end(); ++it) {
  1742. if (auto found_font = it->font_with_point_size(font_size_in_pt))
  1743. return found_font;
  1744. }
  1745. }
  1746. // If the desired weight is less than 400, weights less than or equal to the desired weight are checked in descending order
  1747. // followed by weights above the desired weight in ascending order until a match is found.
  1748. if (key.weight < 400) {
  1749. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, true))
  1750. return found_font;
  1751. if (auto found_font = find_matching_font_weight_ascending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1752. return found_font;
  1753. }
  1754. // If the desired weight is greater than 500, weights greater than or equal to the desired weight are checked in ascending order
  1755. // followed by weights below the desired weight in descending order until a match is found.
  1756. if (key.weight > 500) {
  1757. if (auto found_font = find_matching_font_weight_ascending(matching_family_fonts, key.weight, font_size_in_pt, true))
  1758. return found_font;
  1759. if (auto found_font = find_matching_font_weight_descending(matching_family_fonts, key.weight, font_size_in_pt, false))
  1760. return found_font;
  1761. }
  1762. return {};
  1763. }
  1764. RefPtr<Gfx::FontCascadeList const> StyleComputer::compute_font_for_style_values(DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, StyleValue const& font_family, StyleValue const& font_size, StyleValue const& font_style, StyleValue const& font_weight, StyleValue const& font_stretch, int math_depth) const
  1765. {
  1766. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1767. auto width = font_stretch.to_font_stretch_width();
  1768. auto weight = font_weight.to_font_weight();
  1769. bool bold = weight > Gfx::FontWeight::Regular;
  1770. // FIXME: Should be based on "user's default font size"
  1771. CSSPixels font_size_in_px = 16;
  1772. Gfx::FontPixelMetrics font_pixel_metrics;
  1773. if (parent_element && parent_element->computed_css_values())
  1774. font_pixel_metrics = parent_element->computed_css_values()->first_available_computed_font().pixel_metrics();
  1775. else
  1776. font_pixel_metrics = Platform::FontPlugin::the().default_font().pixel_metrics();
  1777. auto parent_font_size = [&]() -> CSSPixels {
  1778. if (!parent_element || !parent_element->computed_css_values())
  1779. return font_size_in_px;
  1780. auto value = parent_element->computed_css_values()->property(CSS::PropertyID::FontSize);
  1781. if (value->is_length()) {
  1782. auto length = value->as_length().length();
  1783. if (length.is_absolute() || length.is_relative()) {
  1784. Length::FontMetrics font_metrics { font_size_in_px, font_pixel_metrics };
  1785. return length.to_px(viewport_rect(), font_metrics, m_root_element_font_metrics);
  1786. }
  1787. }
  1788. return font_size_in_px;
  1789. };
  1790. Length::FontMetrics font_metrics { parent_font_size(), font_pixel_metrics };
  1791. if (font_size.is_identifier()) {
  1792. // https://w3c.github.io/csswg-drafts/css-fonts/#absolute-size-mapping
  1793. auto get_absolute_size_mapping = [](Web::CSS::ValueID identifier) -> CSSPixelFraction {
  1794. switch (identifier) {
  1795. case CSS::ValueID::XxSmall:
  1796. return CSSPixels(3) / 5;
  1797. case CSS::ValueID::XSmall:
  1798. return CSSPixels(3) / 4;
  1799. case CSS::ValueID::Small:
  1800. return CSSPixels(8) / 9;
  1801. case CSS::ValueID::Medium:
  1802. return 1;
  1803. case CSS::ValueID::Large:
  1804. return CSSPixels(6) / 5;
  1805. case CSS::ValueID::XLarge:
  1806. return CSSPixels(3) / 2;
  1807. case CSS::ValueID::XxLarge:
  1808. return 2;
  1809. case CSS::ValueID::XxxLarge:
  1810. return 3;
  1811. case CSS::ValueID::Smaller:
  1812. return CSSPixels(4) / 5;
  1813. case CSS::ValueID::Larger:
  1814. return CSSPixels(5) / 4;
  1815. default:
  1816. return 1;
  1817. }
  1818. };
  1819. auto const identifier = static_cast<IdentifierStyleValue const&>(font_size).id();
  1820. if (identifier == ValueID::Math) {
  1821. auto math_scaling_factor = [&]() {
  1822. // https://w3c.github.io/mathml-core/#the-math-script-level-property
  1823. // If the specified value font-size is math then the computed value of font-size is obtained by multiplying
  1824. // the inherited value of font-size by a nonzero scale factor calculated by the following procedure:
  1825. // 1. Let A be the inherited math-depth value, B the computed math-depth value, C be 0.71 and S be 1.0
  1826. int inherited_math_depth = parent_element && parent_element->computed_css_values()
  1827. ? parent_element->computed_css_values()->math_depth()
  1828. : InitialValues::math_depth();
  1829. int computed_math_depth = math_depth;
  1830. auto size_ratio = 0.71;
  1831. auto scale = 1.0;
  1832. // 2. If A = B then return S.
  1833. bool invert_scale_factor = false;
  1834. if (inherited_math_depth == computed_math_depth) {
  1835. return scale;
  1836. }
  1837. // If B < A, swap A and B and set InvertScaleFactor to true.
  1838. else if (computed_math_depth < inherited_math_depth) {
  1839. AK::swap(inherited_math_depth, computed_math_depth);
  1840. invert_scale_factor = true;
  1841. }
  1842. // Otherwise B > A and set InvertScaleFactor to false.
  1843. else {
  1844. invert_scale_factor = false;
  1845. }
  1846. // 3. Let E be B - A > 0.
  1847. double e = (computed_math_depth - inherited_math_depth) > 0;
  1848. // FIXME: 4. If the inherited first available font has an OpenType MATH table:
  1849. // - If A ≤ 0 and B ≥ 2 then multiply S by scriptScriptPercentScaleDown and decrement E by 2.
  1850. // - Otherwise if A = 1 then multiply S by scriptScriptPercentScaleDown / scriptPercentScaleDown and decrement E by 1.
  1851. // - Otherwise if B = 1 then multiply S by scriptPercentScaleDown and decrement E by 1.
  1852. // 5. Multiply S by C^E.
  1853. scale *= AK::pow(size_ratio, e);
  1854. // 6. Return S if InvertScaleFactor is false and 1/S otherwise.
  1855. if (!invert_scale_factor)
  1856. return scale;
  1857. return 1.0 / scale;
  1858. };
  1859. font_size_in_px = parent_font_size().scale_by(math_scaling_factor());
  1860. } else {
  1861. // https://w3c.github.io/csswg-drafts/css-fonts/#valdef-font-size-relative-size
  1862. // TODO: If the parent element has a keyword font size in the absolute size keyword mapping table,
  1863. // larger may compute the font size to the next entry in the table,
  1864. // and smaller may compute the font size to the previous entry in the table.
  1865. if (identifier == CSS::ValueID::Smaller || identifier == CSS::ValueID::Larger) {
  1866. if (parent_element && parent_element->computed_css_values()) {
  1867. font_size_in_px = CSSPixels::nearest_value_for(parent_element->computed_css_values()->first_available_computed_font().pixel_metrics().size);
  1868. }
  1869. }
  1870. font_size_in_px *= get_absolute_size_mapping(identifier);
  1871. }
  1872. } else {
  1873. Length::ResolutionContext const length_resolution_context {
  1874. .viewport_rect = viewport_rect(),
  1875. .font_metrics = font_metrics,
  1876. .root_font_metrics = m_root_element_font_metrics,
  1877. };
  1878. Optional<Length> maybe_length;
  1879. if (font_size.is_percentage()) {
  1880. // Percentages refer to parent element's font size
  1881. maybe_length = Length::make_px(CSSPixels::nearest_value_for(font_size.as_percentage().percentage().as_fraction() * parent_font_size().to_double()));
  1882. } else if (font_size.is_length()) {
  1883. maybe_length = font_size.as_length().length();
  1884. } else if (font_size.is_calculated()) {
  1885. if (font_size.as_calculated().contains_percentage()) {
  1886. maybe_length = font_size.as_calculated().resolve_length_percentage(length_resolution_context, Length::make_px(parent_font_size()));
  1887. } else {
  1888. maybe_length = font_size.as_calculated().resolve_length(length_resolution_context);
  1889. }
  1890. }
  1891. if (maybe_length.has_value()) {
  1892. font_size_in_px = maybe_length.value().to_px(length_resolution_context);
  1893. }
  1894. }
  1895. auto slope = font_style.to_font_slope();
  1896. // FIXME: Implement the full font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  1897. // Note: This is modified by the find_font() lambda
  1898. bool monospace = false;
  1899. float const font_size_in_pt = font_size_in_px * 0.75f;
  1900. auto find_font = [&](FlyString const& family) -> RefPtr<Gfx::FontCascadeList const> {
  1901. FontFaceKey key {
  1902. .family_name = family,
  1903. .weight = weight,
  1904. .slope = slope,
  1905. };
  1906. auto result = Gfx::FontCascadeList::create();
  1907. if (auto it = m_loaded_fonts.find(key); it != m_loaded_fonts.end()) {
  1908. auto const& loaders = it->value;
  1909. for (auto const& loader : loaders) {
  1910. if (auto found_font = loader->font_with_point_size(font_size_in_pt))
  1911. result->add(*found_font, loader->unicode_ranges());
  1912. }
  1913. return result;
  1914. }
  1915. if (auto found_font = font_matching_algorithm(key, font_size_in_pt); found_font && !found_font->is_empty()) {
  1916. return found_font;
  1917. }
  1918. if (auto found_font = Gfx::FontDatabase::the().get(family, font_size_in_pt, weight, width, slope)) {
  1919. result->add(*found_font);
  1920. return result;
  1921. }
  1922. return {};
  1923. };
  1924. auto find_generic_font = [&](ValueID font_id) -> RefPtr<Gfx::FontCascadeList const> {
  1925. Platform::GenericFont generic_font {};
  1926. switch (font_id) {
  1927. case ValueID::Monospace:
  1928. case ValueID::UiMonospace:
  1929. generic_font = Platform::GenericFont::Monospace;
  1930. monospace = true;
  1931. break;
  1932. case ValueID::Serif:
  1933. generic_font = Platform::GenericFont::Serif;
  1934. break;
  1935. case ValueID::Fantasy:
  1936. generic_font = Platform::GenericFont::Fantasy;
  1937. break;
  1938. case ValueID::SansSerif:
  1939. generic_font = Platform::GenericFont::SansSerif;
  1940. break;
  1941. case ValueID::Cursive:
  1942. generic_font = Platform::GenericFont::Cursive;
  1943. break;
  1944. case ValueID::UiSerif:
  1945. generic_font = Platform::GenericFont::UiSerif;
  1946. break;
  1947. case ValueID::UiSansSerif:
  1948. generic_font = Platform::GenericFont::UiSansSerif;
  1949. break;
  1950. case ValueID::UiRounded:
  1951. generic_font = Platform::GenericFont::UiRounded;
  1952. break;
  1953. default:
  1954. return {};
  1955. }
  1956. return find_font(Platform::FontPlugin::the().generic_font_name(generic_font));
  1957. };
  1958. auto font_list = Gfx::FontCascadeList::create();
  1959. if (font_family.is_value_list()) {
  1960. auto const& family_list = static_cast<StyleValueList const&>(font_family).values();
  1961. for (auto const& family : family_list) {
  1962. RefPtr<Gfx::FontCascadeList const> other_font_list;
  1963. if (family->is_identifier()) {
  1964. other_font_list = find_generic_font(family->to_identifier());
  1965. } else if (family->is_string()) {
  1966. other_font_list = find_font(family->as_string().string_value());
  1967. } else if (family->is_custom_ident()) {
  1968. other_font_list = find_font(family->as_custom_ident().custom_ident());
  1969. }
  1970. if (other_font_list)
  1971. font_list->extend(*other_font_list);
  1972. }
  1973. } else if (font_family.is_identifier()) {
  1974. if (auto other_font_list = find_generic_font(font_family.to_identifier()))
  1975. font_list->extend(*other_font_list);
  1976. } else if (font_family.is_string()) {
  1977. if (auto other_font_list = find_font(font_family.as_string().string_value()))
  1978. font_list->extend(*other_font_list);
  1979. } else if (font_family.is_custom_ident()) {
  1980. if (auto other_font_list = find_font(font_family.as_custom_ident().custom_ident()))
  1981. font_list->extend(*other_font_list);
  1982. }
  1983. auto found_font = StyleProperties::font_fallback(monospace, bold);
  1984. font_list->add(found_font->with_size(font_size_in_pt));
  1985. return font_list;
  1986. }
  1987. void StyleComputer::compute_font(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  1988. {
  1989. // To compute the font, first ensure that we've defaulted the relevant CSS font properties.
  1990. // FIXME: This should be more sophisticated.
  1991. compute_defaulted_property_value(style, element, CSS::PropertyID::FontFamily, pseudo_element);
  1992. compute_defaulted_property_value(style, element, CSS::PropertyID::FontSize, pseudo_element);
  1993. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStretch, pseudo_element);
  1994. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStyle, pseudo_element);
  1995. compute_defaulted_property_value(style, element, CSS::PropertyID::FontWeight, pseudo_element);
  1996. compute_defaulted_property_value(style, element, CSS::PropertyID::LineHeight, pseudo_element);
  1997. auto font_family = style.property(CSS::PropertyID::FontFamily);
  1998. auto font_size = style.property(CSS::PropertyID::FontSize);
  1999. auto font_style = style.property(CSS::PropertyID::FontStyle);
  2000. auto font_weight = style.property(CSS::PropertyID::FontWeight);
  2001. auto font_stretch = style.property(CSS::PropertyID::FontStretch);
  2002. auto font_list = compute_font_for_style_values(element, pseudo_element, font_family, font_size, font_style, font_weight, font_stretch, style.math_depth());
  2003. VERIFY(font_list);
  2004. VERIFY(!font_list->is_empty());
  2005. RefPtr<Gfx::Font const> const found_font = font_list->first();
  2006. style.set_property(CSS::PropertyID::FontSize, LengthStyleValue::create(CSS::Length::make_px(CSSPixels::nearest_value_for(found_font->pixel_size()))), nullptr);
  2007. style.set_property(CSS::PropertyID::FontWeight, NumberStyleValue::create(font_weight->to_font_weight()));
  2008. style.set_computed_font_list(*font_list);
  2009. if (element && is<HTML::HTMLHtmlElement>(*element)) {
  2010. const_cast<StyleComputer&>(*this).m_root_element_font_metrics = calculate_root_element_font_metrics(style);
  2011. }
  2012. }
  2013. Gfx::Font const& StyleComputer::initial_font() const
  2014. {
  2015. // FIXME: This is not correct.
  2016. return StyleProperties::font_fallback(false, false);
  2017. }
  2018. void StyleComputer::absolutize_values(StyleProperties& style) const
  2019. {
  2020. Length::FontMetrics font_metrics {
  2021. m_root_element_font_metrics.font_size,
  2022. style.first_available_computed_font().pixel_metrics()
  2023. };
  2024. auto font_size = style.property(CSS::PropertyID::FontSize)->as_length().length().to_px(viewport_rect(), font_metrics, m_root_element_font_metrics);
  2025. font_metrics.font_size = font_size;
  2026. // NOTE: Percentage line-height values are relative to the font-size of the element.
  2027. // We have to resolve them right away, so that the *computed* line-height is ready for inheritance.
  2028. // We can't simply absolutize *all* percentage values against the font size,
  2029. // because most percentages are relative to containing block metrics.
  2030. auto& line_height_value_slot = style.m_property_values[to_underlying(CSS::PropertyID::LineHeight)].style;
  2031. if (line_height_value_slot && line_height_value_slot->is_percentage()) {
  2032. line_height_value_slot = LengthStyleValue::create(
  2033. Length::make_px(CSSPixels::nearest_value_for(font_size * static_cast<double>(line_height_value_slot->as_percentage().percentage().as_fraction()))));
  2034. }
  2035. auto line_height = style.compute_line_height(viewport_rect(), font_metrics, m_root_element_font_metrics);
  2036. font_metrics.line_height = line_height;
  2037. // NOTE: line-height might be using lh which should be resolved against the parent line height (like we did here already)
  2038. if (line_height_value_slot && line_height_value_slot->is_length())
  2039. line_height_value_slot = LengthStyleValue::create(Length::make_px(line_height));
  2040. for (size_t i = 0; i < style.m_property_values.size(); ++i) {
  2041. auto& value_slot = style.m_property_values[i];
  2042. if (!value_slot.style)
  2043. continue;
  2044. value_slot.style = value_slot.style->absolutized(viewport_rect(), font_metrics, m_root_element_font_metrics);
  2045. }
  2046. style.set_line_height({}, line_height);
  2047. }
  2048. void StyleComputer::resolve_effective_overflow_values(StyleProperties& style) const
  2049. {
  2050. // https://www.w3.org/TR/css-overflow-3/#overflow-control
  2051. // The visible/clip values of overflow compute to auto/hidden (respectively) if one of overflow-x or
  2052. // overflow-y is neither visible nor clip.
  2053. auto overflow_x = value_id_to_overflow(style.property(PropertyID::OverflowX)->to_identifier());
  2054. auto overflow_y = value_id_to_overflow(style.property(PropertyID::OverflowY)->to_identifier());
  2055. auto overflow_x_is_visible_or_clip = overflow_x == Overflow::Visible || overflow_x == Overflow::Clip;
  2056. auto overflow_y_is_visible_or_clip = overflow_y == Overflow::Visible || overflow_y == Overflow::Clip;
  2057. if (!overflow_x_is_visible_or_clip || !overflow_y_is_visible_or_clip) {
  2058. if (overflow_x == CSS::Overflow::Visible)
  2059. style.set_property(CSS::PropertyID::OverflowX, IdentifierStyleValue::create(CSS::ValueID::Auto), nullptr);
  2060. if (overflow_x == CSS::Overflow::Clip)
  2061. style.set_property(CSS::PropertyID::OverflowX, IdentifierStyleValue::create(CSS::ValueID::Hidden), nullptr);
  2062. if (overflow_y == CSS::Overflow::Visible)
  2063. style.set_property(CSS::PropertyID::OverflowY, IdentifierStyleValue::create(CSS::ValueID::Auto), nullptr);
  2064. if (overflow_y == CSS::Overflow::Clip)
  2065. style.set_property(CSS::PropertyID::OverflowY, IdentifierStyleValue::create(CSS::ValueID::Hidden), nullptr);
  2066. }
  2067. }
  2068. enum class BoxTypeTransformation {
  2069. None,
  2070. Blockify,
  2071. Inlinify,
  2072. };
  2073. static BoxTypeTransformation required_box_type_transformation(StyleProperties const& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement::Type> const& pseudo_element)
  2074. {
  2075. // NOTE: We never blockify <br> elements. They are always inline.
  2076. // There is currently no way to express in CSS how a <br> element really behaves.
  2077. // Spec issue: https://github.com/whatwg/html/issues/2291
  2078. if (is<HTML::HTMLBRElement>(element))
  2079. return BoxTypeTransformation::None;
  2080. // Absolute positioning or floating an element blockifies the box’s display type. [CSS2]
  2081. if (style.position() == CSS::Positioning::Absolute || style.position() == CSS::Positioning::Fixed || style.float_() != CSS::Float::None)
  2082. return BoxTypeTransformation::Blockify;
  2083. // FIXME: Containment in a ruby container inlinifies the box’s display type, as described in [CSS-RUBY-1].
  2084. // NOTE: If we're computing style for a pseudo-element, the effective parent will be the originating element itself, not its parent.
  2085. auto const* parent = pseudo_element.has_value() ? &element : element.parent_element();
  2086. // A parent with a grid or flex display value blockifies the box’s display type. [CSS-GRID-1] [CSS-FLEXBOX-1]
  2087. if (parent && parent->computed_css_values()) {
  2088. auto const& parent_display = parent->computed_css_values()->display();
  2089. if (parent_display.is_grid_inside() || parent_display.is_flex_inside())
  2090. return BoxTypeTransformation::Blockify;
  2091. }
  2092. return BoxTypeTransformation::None;
  2093. }
  2094. // https://drafts.csswg.org/css-display/#transformations
  2095. void StyleComputer::transform_box_type_if_needed(StyleProperties& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  2096. {
  2097. // 2.7. Automatic Box Type Transformations
  2098. // Some layout effects require blockification or inlinification of the box type,
  2099. // which sets the box’s computed outer display type to block or inline (respectively).
  2100. // (This has no effect on display types that generate no box at all, such as none or contents.)
  2101. auto display = style.display();
  2102. if (display.is_none() || display.is_contents())
  2103. return;
  2104. auto new_display = display;
  2105. if (display.is_math_inside()) {
  2106. // https://w3c.github.io/mathml-core/#new-display-math-value
  2107. // For elements that are not MathML elements, if the specified value of display is inline math or block math
  2108. // then the computed value is block flow and inline flow respectively.
  2109. if (element.namespace_uri() != Namespace::MathML)
  2110. new_display = CSS::Display { display.outside(), CSS::DisplayInside::Flow };
  2111. // For the mtable element the computed value is block table and inline table respectively.
  2112. else if (element.tag_name().equals_ignoring_ascii_case("mtable"sv))
  2113. new_display = CSS::Display { display.outside(), CSS::DisplayInside::Table };
  2114. // For the mtr element, the computed value is table-row.
  2115. else if (element.tag_name().equals_ignoring_ascii_case("mtr"sv))
  2116. new_display = CSS::Display { CSS::DisplayInternal::TableRow };
  2117. // For the mtd element, the computed value is table-cell.
  2118. else if (element.tag_name().equals_ignoring_ascii_case("mtd"sv))
  2119. new_display = CSS::Display { CSS::DisplayInternal::TableCell };
  2120. }
  2121. switch (required_box_type_transformation(style, element, pseudo_element)) {
  2122. case BoxTypeTransformation::None:
  2123. break;
  2124. case BoxTypeTransformation::Blockify:
  2125. if (display.is_block_outside())
  2126. return;
  2127. // If a layout-internal box is blockified, its inner display type converts to flow so that it becomes a block container.
  2128. if (display.is_internal()) {
  2129. new_display = CSS::Display::from_short(CSS::Display::Short::Block);
  2130. } else {
  2131. VERIFY(display.is_outside_and_inside());
  2132. // For legacy reasons, if an inline block box (inline flow-root) is blockified, it becomes a block box (losing its flow-root nature).
  2133. // For consistency, a run-in flow-root box also blockifies to a block box.
  2134. if (display.is_inline_block()) {
  2135. new_display = CSS::Display { CSS::DisplayOutside::Block, CSS::DisplayInside::Flow, display.list_item() };
  2136. } else {
  2137. new_display = CSS::Display { CSS::DisplayOutside::Block, display.inside(), display.list_item() };
  2138. }
  2139. }
  2140. break;
  2141. case BoxTypeTransformation::Inlinify:
  2142. if (display.is_inline_outside()) {
  2143. // FIXME: If an inline box (inline flow) is inlinified, it recursively inlinifies all of its in-flow children,
  2144. // so that no block-level descendants break up the inline formatting context in which it participates.
  2145. if (display.is_flow_inside()) {
  2146. dbgln("FIXME: Inlinify inline box children recursively");
  2147. }
  2148. break;
  2149. }
  2150. if (display.is_internal()) {
  2151. // Inlinification has no effect on layout-internal boxes. (However, placement in such an inline context will typically cause them
  2152. // to be wrapped in an appropriately-typed anonymous inline-level box.)
  2153. } else {
  2154. VERIFY(display.is_outside_and_inside());
  2155. // If a block box (block flow) is inlinified, its inner display type is set to flow-root so that it remains a block container.
  2156. if (display.is_block_outside() && display.is_flow_inside()) {
  2157. new_display = CSS::Display { CSS::DisplayOutside::Inline, CSS::DisplayInside::FlowRoot, display.list_item() };
  2158. }
  2159. new_display = CSS::Display { CSS::DisplayOutside::Inline, display.inside(), display.list_item() };
  2160. }
  2161. break;
  2162. }
  2163. if (new_display != display)
  2164. style.set_property(CSS::PropertyID::Display, DisplayStyleValue::create(new_display), style.property_source_declaration(CSS::PropertyID::Display));
  2165. }
  2166. NonnullRefPtr<StyleProperties> StyleComputer::create_document_style() const
  2167. {
  2168. auto style = StyleProperties::create();
  2169. compute_math_depth(style, nullptr, {});
  2170. compute_font(style, nullptr, {});
  2171. compute_defaulted_values(style, nullptr, {});
  2172. absolutize_values(style);
  2173. style->set_property(CSS::PropertyID::Width, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().width())), nullptr);
  2174. style->set_property(CSS::PropertyID::Height, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().height())), nullptr);
  2175. style->set_property(CSS::PropertyID::Display, CSS::DisplayStyleValue::create(CSS::Display::from_short(CSS::Display::Short::Block)), nullptr);
  2176. return style;
  2177. }
  2178. NonnullRefPtr<StyleProperties> StyleComputer::compute_style(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  2179. {
  2180. return compute_style_impl(element, move(pseudo_element), ComputeStyleMode::Normal).release_nonnull();
  2181. }
  2182. RefPtr<StyleProperties> StyleComputer::compute_pseudo_element_style_if_needed(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  2183. {
  2184. return compute_style_impl(element, move(pseudo_element), ComputeStyleMode::CreatePseudoElementStyleIfNeeded);
  2185. }
  2186. RefPtr<StyleProperties> StyleComputer::compute_style_impl(DOM::Element& element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element, ComputeStyleMode mode) const
  2187. {
  2188. build_rule_cache_if_needed();
  2189. // Special path for elements that use pseudo element as style selector
  2190. if (element.use_pseudo_element().has_value()) {
  2191. auto& parent_element = verify_cast<HTML::HTMLElement>(*element.root().parent_or_shadow_host());
  2192. auto style = compute_style(parent_element, *element.use_pseudo_element());
  2193. // Merge back inline styles
  2194. if (element.has_attribute(HTML::AttributeNames::style)) {
  2195. auto* inline_style = parse_css_style_attribute(CSS::Parser::ParsingContext(document()), *element.get_attribute(HTML::AttributeNames::style), element);
  2196. for (auto const& property : inline_style->properties())
  2197. style->set_property(property.property_id, property.value);
  2198. }
  2199. return style;
  2200. }
  2201. auto style = StyleProperties::create();
  2202. // 1. Perform the cascade. This produces the "specified style"
  2203. bool did_match_any_pseudo_element_rules = false;
  2204. compute_cascaded_values(style, element, pseudo_element, did_match_any_pseudo_element_rules, mode);
  2205. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded && !did_match_any_pseudo_element_rules)
  2206. return nullptr;
  2207. // 2. Compute the math-depth property, since that might affect the font-size
  2208. compute_math_depth(style, &element, pseudo_element);
  2209. // 3. Compute the font, since that may be needed for font-relative CSS units
  2210. compute_font(style, &element, pseudo_element);
  2211. // 4. Absolutize values, turning font/viewport relative lengths into absolute lengths
  2212. absolutize_values(style);
  2213. // 5. Default the values, applying inheritance and 'initial' as needed
  2214. compute_defaulted_values(style, &element, pseudo_element);
  2215. // 6. Run automatic box type transformations
  2216. transform_box_type_if_needed(style, element, pseudo_element);
  2217. // 7. Resolve effective overflow values
  2218. resolve_effective_overflow_values(style);
  2219. // 8. Let the element adjust computed style
  2220. element.adjust_computed_style(style);
  2221. return style;
  2222. }
  2223. void StyleComputer::build_rule_cache_if_needed() const
  2224. {
  2225. if (m_author_rule_cache && m_user_rule_cache && m_user_agent_rule_cache)
  2226. return;
  2227. const_cast<StyleComputer&>(*this).build_rule_cache();
  2228. }
  2229. NonnullOwnPtr<StyleComputer::RuleCache> StyleComputer::make_rule_cache_for_cascade_origin(CascadeOrigin cascade_origin)
  2230. {
  2231. auto rule_cache = make<RuleCache>();
  2232. size_t num_class_rules = 0;
  2233. size_t num_id_rules = 0;
  2234. size_t num_tag_name_rules = 0;
  2235. size_t num_pseudo_element_rules = 0;
  2236. size_t num_root_rules = 0;
  2237. size_t num_attribute_rules = 0;
  2238. Vector<MatchingRule> matching_rules;
  2239. size_t style_sheet_index = 0;
  2240. for_each_stylesheet(cascade_origin, [&](auto& sheet, JS::GCPtr<DOM::ShadowRoot> shadow_root) {
  2241. size_t rule_index = 0;
  2242. sheet.for_each_effective_style_rule([&](auto const& rule) {
  2243. size_t selector_index = 0;
  2244. for (CSS::Selector const& selector : rule.selectors()) {
  2245. MatchingRule matching_rule {
  2246. shadow_root,
  2247. &rule,
  2248. sheet,
  2249. style_sheet_index,
  2250. rule_index,
  2251. selector_index,
  2252. selector.specificity(),
  2253. cascade_origin,
  2254. false,
  2255. false,
  2256. SelectorEngine::can_use_fast_matches(selector),
  2257. };
  2258. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  2259. if (!matching_rule.contains_pseudo_element) {
  2260. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::PseudoElement) {
  2261. matching_rule.contains_pseudo_element = true;
  2262. ++num_pseudo_element_rules;
  2263. }
  2264. }
  2265. if (!matching_rule.contains_root_pseudo_class) {
  2266. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::PseudoClass
  2267. && simple_selector.pseudo_class().type == CSS::PseudoClass::Root) {
  2268. matching_rule.contains_root_pseudo_class = true;
  2269. ++num_root_rules;
  2270. }
  2271. }
  2272. }
  2273. bool added_to_bucket = false;
  2274. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  2275. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Id) {
  2276. rule_cache->rules_by_id.ensure(simple_selector.name()).append(move(matching_rule));
  2277. ++num_id_rules;
  2278. added_to_bucket = true;
  2279. break;
  2280. }
  2281. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Class) {
  2282. rule_cache->rules_by_class.ensure(simple_selector.name()).append(move(matching_rule));
  2283. ++num_class_rules;
  2284. added_to_bucket = true;
  2285. break;
  2286. }
  2287. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::TagName) {
  2288. rule_cache->rules_by_tag_name.ensure(simple_selector.qualified_name().name.lowercase_name).append(move(matching_rule));
  2289. ++num_tag_name_rules;
  2290. added_to_bucket = true;
  2291. break;
  2292. }
  2293. }
  2294. if (!added_to_bucket) {
  2295. if (matching_rule.contains_pseudo_element) {
  2296. rule_cache->pseudo_element_rules.append(move(matching_rule));
  2297. } else if (matching_rule.contains_root_pseudo_class) {
  2298. rule_cache->root_rules.append(move(matching_rule));
  2299. } else {
  2300. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  2301. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Attribute) {
  2302. rule_cache->rules_by_attribute_name.ensure(simple_selector.attribute().qualified_name.name.lowercase_name).append(move(matching_rule));
  2303. ++num_attribute_rules;
  2304. added_to_bucket = true;
  2305. break;
  2306. }
  2307. }
  2308. if (!added_to_bucket) {
  2309. rule_cache->other_rules.append(move(matching_rule));
  2310. }
  2311. }
  2312. }
  2313. ++selector_index;
  2314. }
  2315. ++rule_index;
  2316. });
  2317. // Loosely based on https://drafts.csswg.org/css-animations-2/#keyframe-processing
  2318. sheet.for_each_effective_keyframes_at_rule([&](CSSKeyframesRule const& rule) {
  2319. auto keyframe_set = adopt_ref(*new Animations::KeyframeEffect::KeyFrameSet);
  2320. HashTable<PropertyID> animated_properties;
  2321. // Forwards pass, resolve all the user-specified keyframe properties.
  2322. for (auto const& keyframe_rule : *rule.css_rules()) {
  2323. auto const& keyframe = verify_cast<CSSKeyframeRule>(*keyframe_rule);
  2324. Animations::KeyframeEffect::KeyFrameSet::ResolvedKeyFrame resolved_keyframe;
  2325. auto key = static_cast<u64>(keyframe.key().value() * Animations::KeyframeEffect::AnimationKeyFrameKeyScaleFactor);
  2326. auto const& keyframe_style = *keyframe.style_as_property_owning_style_declaration();
  2327. for (auto const& it : keyframe_style.properties()) {
  2328. // Unresolved properties will be resolved in collect_animation_into()
  2329. for_each_property_expanding_shorthands(it.property_id, it.value, AllowUnresolved::Yes, [&](PropertyID shorthand_id, StyleValue const& shorthand_value) {
  2330. animated_properties.set(shorthand_id);
  2331. resolved_keyframe.properties.set(shorthand_id, NonnullRefPtr<StyleValue const> { shorthand_value });
  2332. });
  2333. }
  2334. keyframe_set->keyframes_by_key.insert(key, resolved_keyframe);
  2335. }
  2336. Animations::KeyframeEffect::generate_initial_and_final_frames(keyframe_set, animated_properties);
  2337. if constexpr (LIBWEB_CSS_DEBUG) {
  2338. dbgln("Resolved keyframe set '{}' into {} keyframes:", rule.name(), keyframe_set->keyframes_by_key.size());
  2339. for (auto it = keyframe_set->keyframes_by_key.begin(); it != keyframe_set->keyframes_by_key.end(); ++it)
  2340. dbgln(" - keyframe {}: {} properties", it.key(), it->properties.size());
  2341. }
  2342. rule_cache->rules_by_animation_keyframes.set(rule.name(), move(keyframe_set));
  2343. });
  2344. ++style_sheet_index;
  2345. });
  2346. size_t total_rules = num_class_rules + num_id_rules + num_tag_name_rules + num_pseudo_element_rules + num_root_rules + num_attribute_rules + rule_cache->other_rules.size();
  2347. if constexpr (LIBWEB_CSS_DEBUG) {
  2348. dbgln("Built rule cache!");
  2349. dbgln(" ID: {}", num_id_rules);
  2350. dbgln(" Class: {}", num_class_rules);
  2351. dbgln(" TagName: {}", num_tag_name_rules);
  2352. dbgln("PseudoElement: {}", num_pseudo_element_rules);
  2353. dbgln(" Root: {}", num_root_rules);
  2354. dbgln(" Attribute: {}", num_attribute_rules);
  2355. dbgln(" Other: {}", rule_cache->other_rules.size());
  2356. dbgln(" Total: {}", total_rules);
  2357. }
  2358. return rule_cache;
  2359. }
  2360. void StyleComputer::build_rule_cache()
  2361. {
  2362. if (auto user_style_source = document().page().user_style(); user_style_source.has_value()) {
  2363. m_user_style_sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document()), user_style_source.value()));
  2364. }
  2365. m_author_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::Author);
  2366. m_user_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::User);
  2367. m_user_agent_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::UserAgent);
  2368. }
  2369. void StyleComputer::invalidate_rule_cache()
  2370. {
  2371. m_author_rule_cache = nullptr;
  2372. // NOTE: We could be smarter about keeping the user rule cache, and style sheet.
  2373. // Currently we are re-parsing the user style sheet every time we build the caches,
  2374. // as it may have changed.
  2375. m_user_rule_cache = nullptr;
  2376. m_user_style_sheet = nullptr;
  2377. // NOTE: It might not be necessary to throw away the UA rule cache.
  2378. // If we are sure that it's safe, we could keep it as an optimization.
  2379. m_user_agent_rule_cache = nullptr;
  2380. }
  2381. void StyleComputer::did_load_font(FlyString const&)
  2382. {
  2383. document().invalidate_style();
  2384. }
  2385. Optional<FontLoader&> StyleComputer::load_font_face(ParsedFontFace const& font_face, Function<void(FontLoader const&)> on_load, Function<void()> on_fail)
  2386. {
  2387. if (font_face.sources().is_empty()) {
  2388. if (on_fail)
  2389. on_fail();
  2390. return {};
  2391. }
  2392. FontFaceKey key {
  2393. .family_name = font_face.font_family(),
  2394. .weight = font_face.weight().value_or(0),
  2395. .slope = font_face.slope().value_or(0),
  2396. };
  2397. Vector<URL::URL> urls;
  2398. for (auto const& source : font_face.sources()) {
  2399. // FIXME: These should be loaded relative to the stylesheet URL instead of the document URL.
  2400. if (source.local_or_url.has<URL::URL>())
  2401. urls.append(m_document->parse_url(MUST(source.local_or_url.get<URL::URL>().to_string())));
  2402. // FIXME: Handle local()
  2403. }
  2404. if (urls.is_empty()) {
  2405. if (on_fail)
  2406. on_fail();
  2407. return {};
  2408. }
  2409. auto loader = make<FontLoader>(const_cast<StyleComputer&>(*this), font_face.font_family(), font_face.unicode_ranges(), move(urls), move(on_load), move(on_fail));
  2410. auto& loader_ref = *loader;
  2411. auto maybe_font_loaders_list = const_cast<StyleComputer&>(*this).m_loaded_fonts.get(key);
  2412. if (maybe_font_loaders_list.has_value()) {
  2413. maybe_font_loaders_list->append(move(loader));
  2414. } else {
  2415. FontLoaderList loaders;
  2416. loaders.append(move(loader));
  2417. const_cast<StyleComputer&>(*this).m_loaded_fonts.set(key, move(loaders));
  2418. }
  2419. // Actual object owned by font loader list inside m_loaded_fonts, this isn't use-after-move/free
  2420. return loader_ref;
  2421. }
  2422. void StyleComputer::load_fonts_from_sheet(CSSStyleSheet const& sheet)
  2423. {
  2424. for (auto const& rule : sheet.rules()) {
  2425. if (!is<CSSFontFaceRule>(*rule))
  2426. continue;
  2427. (void)load_font_face(static_cast<CSSFontFaceRule const&>(*rule).font_face());
  2428. }
  2429. }
  2430. void StyleComputer::compute_math_depth(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement::Type> pseudo_element) const
  2431. {
  2432. // https://w3c.github.io/mathml-core/#propdef-math-depth
  2433. // First, ensure that the relevant CSS properties have been defaulted.
  2434. // FIXME: This should be more sophisticated.
  2435. compute_defaulted_property_value(style, element, CSS::PropertyID::MathDepth, pseudo_element);
  2436. compute_defaulted_property_value(style, element, CSS::PropertyID::MathStyle, pseudo_element);
  2437. auto inherited_math_depth = [&]() {
  2438. if (!element || !element->parent_element())
  2439. return InitialValues::math_depth();
  2440. return element->parent_element()->computed_css_values()->math_depth();
  2441. };
  2442. auto value = style.property(CSS::PropertyID::MathDepth);
  2443. if (!value->is_math_depth()) {
  2444. style.set_math_depth(inherited_math_depth());
  2445. return;
  2446. }
  2447. auto& math_depth = value->as_math_depth();
  2448. auto resolve_integer = [&](StyleValue const& integer_value) {
  2449. if (integer_value.is_integer())
  2450. return integer_value.as_integer().integer();
  2451. if (integer_value.is_calculated())
  2452. return integer_value.as_calculated().resolve_integer().value();
  2453. VERIFY_NOT_REACHED();
  2454. };
  2455. // The computed value of the math-depth value is determined as follows:
  2456. // - If the specified value of math-depth is auto-add and the inherited value of math-style is compact
  2457. // then the computed value of math-depth of the element is its inherited value plus one.
  2458. if (math_depth.is_auto_add() && style.property(CSS::PropertyID::MathStyle)->to_identifier() == CSS::ValueID::Compact) {
  2459. style.set_math_depth(inherited_math_depth() + 1);
  2460. return;
  2461. }
  2462. // - If the specified value of math-depth is of the form add(<integer>) then the computed value of
  2463. // math-depth of the element is its inherited value plus the specified integer.
  2464. if (math_depth.is_add()) {
  2465. style.set_math_depth(inherited_math_depth() + resolve_integer(*math_depth.integer_value()));
  2466. return;
  2467. }
  2468. // - If the specified value of math-depth is of the form <integer> then the computed value of math-depth
  2469. // of the element is the specified integer.
  2470. if (math_depth.is_integer()) {
  2471. style.set_math_depth(resolve_integer(*math_depth.integer_value()));
  2472. return;
  2473. }
  2474. // - Otherwise, the computed value of math-depth of the element is the inherited one.
  2475. style.set_math_depth(inherited_math_depth());
  2476. }
  2477. static void for_each_element_hash(DOM::Element const& element, auto callback)
  2478. {
  2479. callback(element.local_name().hash());
  2480. if (element.id().has_value())
  2481. callback(element.id().value().hash());
  2482. for (auto const& class_ : element.class_names())
  2483. callback(class_.hash());
  2484. element.for_each_attribute([&](auto& attribute) {
  2485. callback(attribute.local_name().hash());
  2486. });
  2487. }
  2488. void StyleComputer::reset_ancestor_filter()
  2489. {
  2490. m_ancestor_filter.clear();
  2491. }
  2492. void StyleComputer::push_ancestor(DOM::Element const& element)
  2493. {
  2494. for_each_element_hash(element, [&](u32 hash) {
  2495. m_ancestor_filter.increment(hash);
  2496. });
  2497. }
  2498. void StyleComputer::pop_ancestor(DOM::Element const& element)
  2499. {
  2500. for_each_element_hash(element, [&](u32 hash) {
  2501. m_ancestor_filter.decrement(hash);
  2502. });
  2503. }
  2504. }