StyleComputer.cpp 129 KB

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