StyleComputer.cpp 143 KB

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