StyleComputer.cpp 128 KB

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