StyleComputer.cpp 131 KB

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