StyleComputer.cpp 140 KB

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