StyleComputer.cpp 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719
  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/Debug.h>
  9. #include <AK/Error.h>
  10. #include <AK/HashMap.h>
  11. #include <AK/QuickSort.h>
  12. #include <AK/TemporaryChange.h>
  13. #include <LibGfx/Font/Font.h>
  14. #include <LibGfx/Font/FontDatabase.h>
  15. #include <LibGfx/Font/FontStyleMapping.h>
  16. #include <LibGfx/Font/OpenType/Font.h>
  17. #include <LibGfx/Font/ScaledFont.h>
  18. #include <LibGfx/Font/VectorFont.h>
  19. #include <LibGfx/Font/WOFF/Font.h>
  20. #include <LibWeb/CSS/CSSFontFaceRule.h>
  21. #include <LibWeb/CSS/CSSImportRule.h>
  22. #include <LibWeb/CSS/CSSStyleRule.h>
  23. #include <LibWeb/CSS/Parser/Parser.h>
  24. #include <LibWeb/CSS/SelectorEngine.h>
  25. #include <LibWeb/CSS/StyleComputer.h>
  26. #include <LibWeb/CSS/StyleSheet.h>
  27. #include <LibWeb/CSS/StyleValues/BackgroundStyleValue.h>
  28. #include <LibWeb/CSS/StyleValues/BorderRadiusShorthandStyleValue.h>
  29. #include <LibWeb/CSS/StyleValues/BorderRadiusStyleValue.h>
  30. #include <LibWeb/CSS/StyleValues/BorderStyleValue.h>
  31. #include <LibWeb/CSS/StyleValues/ColorStyleValue.h>
  32. #include <LibWeb/CSS/StyleValues/FilterValueListStyleValue.h>
  33. #include <LibWeb/CSS/StyleValues/FlexFlowStyleValue.h>
  34. #include <LibWeb/CSS/StyleValues/FlexStyleValue.h>
  35. #include <LibWeb/CSS/StyleValues/FontStyleValue.h>
  36. #include <LibWeb/CSS/StyleValues/GridAreaShorthandStyleValue.h>
  37. #include <LibWeb/CSS/StyleValues/GridTrackPlacementShorthandStyleValue.h>
  38. #include <LibWeb/CSS/StyleValues/GridTrackPlacementStyleValue.h>
  39. #include <LibWeb/CSS/StyleValues/GridTrackSizeListShorthandStyleValue.h>
  40. #include <LibWeb/CSS/StyleValues/GridTrackSizeListStyleValue.h>
  41. #include <LibWeb/CSS/StyleValues/IdentifierStyleValue.h>
  42. #include <LibWeb/CSS/StyleValues/LengthStyleValue.h>
  43. #include <LibWeb/CSS/StyleValues/ListStyleStyleValue.h>
  44. #include <LibWeb/CSS/StyleValues/NumericStyleValue.h>
  45. #include <LibWeb/CSS/StyleValues/OverflowStyleValue.h>
  46. #include <LibWeb/CSS/StyleValues/PercentageStyleValue.h>
  47. #include <LibWeb/CSS/StyleValues/PositionStyleValue.h>
  48. #include <LibWeb/CSS/StyleValues/StyleValueList.h>
  49. #include <LibWeb/CSS/StyleValues/TextDecorationStyleValue.h>
  50. #include <LibWeb/CSS/StyleValues/UnresolvedStyleValue.h>
  51. #include <LibWeb/DOM/Document.h>
  52. #include <LibWeb/DOM/Element.h>
  53. #include <LibWeb/FontCache.h>
  54. #include <LibWeb/HTML/HTMLHtmlElement.h>
  55. #include <LibWeb/Loader/ResourceLoader.h>
  56. #include <LibWeb/Platform/FontPlugin.h>
  57. #include <stdio.h>
  58. namespace Web::CSS {
  59. StyleComputer::StyleComputer(DOM::Document& document)
  60. : m_document(document)
  61. {
  62. }
  63. StyleComputer::~StyleComputer() = default;
  64. class StyleComputer::FontLoader : public ResourceClient {
  65. public:
  66. explicit FontLoader(StyleComputer& style_computer, FlyString family_name, Vector<AK::URL> urls)
  67. : m_style_computer(style_computer)
  68. , m_family_name(move(family_name))
  69. , m_urls(move(urls))
  70. {
  71. start_loading_next_url();
  72. }
  73. virtual ~FontLoader() override { }
  74. virtual void resource_did_load() override
  75. {
  76. auto result = try_load_font();
  77. if (result.is_error())
  78. return start_loading_next_url();
  79. m_vector_font = result.release_value();
  80. m_style_computer.did_load_font(m_family_name);
  81. }
  82. virtual void resource_did_fail() override
  83. {
  84. }
  85. RefPtr<Gfx::Font> font_with_point_size(float point_size) const
  86. {
  87. if (!m_vector_font)
  88. return nullptr;
  89. if (auto it = m_cached_fonts.find(point_size); it != m_cached_fonts.end())
  90. return it->value;
  91. // FIXME: It might be nicer to have a global cap on the number of fonts we cache
  92. // instead of doing it at the per-font level like this.
  93. constexpr size_t max_cached_font_size_count = 64;
  94. if (m_cached_fonts.size() > max_cached_font_size_count)
  95. m_cached_fonts.remove(m_cached_fonts.begin());
  96. auto font = adopt_ref(*new Gfx::ScaledFont(*m_vector_font, point_size, point_size));
  97. m_cached_fonts.set(point_size, font);
  98. return font;
  99. }
  100. private:
  101. void start_loading_next_url()
  102. {
  103. if (m_urls.is_empty())
  104. return;
  105. LoadRequest request;
  106. request.set_url(m_urls.take_first());
  107. set_resource(ResourceLoader::the().load_resource(Resource::Type::Generic, request));
  108. }
  109. ErrorOr<NonnullRefPtr<Gfx::VectorFont>> try_load_font()
  110. {
  111. // 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
  112. auto mime_type = resource()->mime_type();
  113. if (mime_type == "font/ttf"sv || mime_type == "application/x-font-ttf"sv)
  114. return TRY(OpenType::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  115. if (mime_type == "font/woff"sv || mime_type == "application/font-woff"sv)
  116. return TRY(WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data()));
  117. auto ttf = OpenType::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  118. if (!ttf.is_error())
  119. return ttf.release_value();
  120. auto woff = WOFF::Font::try_load_from_externally_owned_memory(resource()->encoded_data());
  121. if (!woff.is_error())
  122. return woff.release_value();
  123. return ttf.release_error();
  124. }
  125. StyleComputer& m_style_computer;
  126. FlyString m_family_name;
  127. RefPtr<Gfx::VectorFont> m_vector_font;
  128. Vector<AK::URL> m_urls;
  129. HashMap<float, NonnullRefPtr<Gfx::ScaledFont>> mutable m_cached_fonts;
  130. };
  131. static CSSStyleSheet& default_stylesheet(DOM::Document const& document)
  132. {
  133. static JS::Handle<CSSStyleSheet> sheet;
  134. if (!sheet.cell()) {
  135. extern StringView default_stylesheet_source;
  136. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), default_stylesheet_source));
  137. }
  138. return *sheet;
  139. }
  140. static CSSStyleSheet& quirks_mode_stylesheet(DOM::Document const& document)
  141. {
  142. static JS::Handle<CSSStyleSheet> sheet;
  143. if (!sheet.cell()) {
  144. extern StringView quirks_mode_stylesheet_source;
  145. sheet = JS::make_handle(parse_css_stylesheet(CSS::Parser::ParsingContext(document), quirks_mode_stylesheet_source));
  146. }
  147. return *sheet;
  148. }
  149. template<typename Callback>
  150. void StyleComputer::for_each_stylesheet(CascadeOrigin cascade_origin, Callback callback) const
  151. {
  152. if (cascade_origin == CascadeOrigin::UserAgent) {
  153. callback(default_stylesheet(document()));
  154. if (document().in_quirks_mode())
  155. callback(quirks_mode_stylesheet(document()));
  156. }
  157. if (cascade_origin == CascadeOrigin::Author) {
  158. for (auto const& sheet : document().style_sheets().sheets())
  159. callback(*sheet);
  160. }
  161. }
  162. StyleComputer::RuleCache const& StyleComputer::rule_cache_for_cascade_origin(CascadeOrigin cascade_origin) const
  163. {
  164. switch (cascade_origin) {
  165. case CascadeOrigin::Author:
  166. return *m_author_rule_cache;
  167. case CascadeOrigin::UserAgent:
  168. return *m_user_agent_rule_cache;
  169. default:
  170. TODO();
  171. }
  172. }
  173. Vector<MatchingRule> StyleComputer::collect_matching_rules(DOM::Element const& element, CascadeOrigin cascade_origin, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  174. {
  175. auto const& rule_cache = rule_cache_for_cascade_origin(cascade_origin);
  176. Vector<MatchingRule> rules_to_run;
  177. auto add_rules_to_run = [&](Vector<MatchingRule> const& rules) {
  178. if (pseudo_element.has_value()) {
  179. for (auto& rule : rules) {
  180. if (rule.contains_pseudo_element)
  181. rules_to_run.append(rule);
  182. }
  183. } else {
  184. rules_to_run.extend(rules);
  185. }
  186. };
  187. for (auto const& class_name : element.class_names()) {
  188. if (auto it = rule_cache.rules_by_class.find(class_name); it != rule_cache.rules_by_class.end())
  189. add_rules_to_run(it->value);
  190. }
  191. if (auto id = element.get_attribute(HTML::AttributeNames::id); !id.is_null()) {
  192. 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())
  193. add_rules_to_run(it->value);
  194. }
  195. 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())
  196. add_rules_to_run(it->value);
  197. add_rules_to_run(rule_cache.other_rules);
  198. Vector<MatchingRule> matching_rules;
  199. matching_rules.ensure_capacity(rules_to_run.size());
  200. for (auto const& rule_to_run : rules_to_run) {
  201. auto const& selector = rule_to_run.rule->selectors()[rule_to_run.selector_index];
  202. if (SelectorEngine::matches(selector, element, pseudo_element))
  203. matching_rules.append(rule_to_run);
  204. }
  205. return matching_rules;
  206. }
  207. static void sort_matching_rules(Vector<MatchingRule>& matching_rules)
  208. {
  209. quick_sort(matching_rules, [&](MatchingRule& a, MatchingRule& b) {
  210. auto const& a_selector = a.rule->selectors()[a.selector_index];
  211. auto const& b_selector = b.rule->selectors()[b.selector_index];
  212. auto a_specificity = a_selector->specificity();
  213. auto b_specificity = b_selector->specificity();
  214. if (a_selector->specificity() == b_selector->specificity()) {
  215. if (a.style_sheet_index == b.style_sheet_index)
  216. return a.rule_index < b.rule_index;
  217. return a.style_sheet_index < b.style_sheet_index;
  218. }
  219. return a_specificity < b_specificity;
  220. });
  221. }
  222. enum class Edge {
  223. Top,
  224. Right,
  225. Bottom,
  226. Left,
  227. All,
  228. };
  229. static bool contains(Edge a, Edge b)
  230. {
  231. return a == b || b == Edge::All;
  232. }
  233. static void set_property_expanding_shorthands(StyleProperties& style, CSS::PropertyID property_id, StyleValue const& value, DOM::Document& document)
  234. {
  235. auto assign_edge_values = [&style](PropertyID top_property, PropertyID right_property, PropertyID bottom_property, PropertyID left_property, auto const& values) {
  236. if (values.size() == 4) {
  237. style.set_property(top_property, values[0]);
  238. style.set_property(right_property, values[1]);
  239. style.set_property(bottom_property, values[2]);
  240. style.set_property(left_property, values[3]);
  241. } else if (values.size() == 3) {
  242. style.set_property(top_property, values[0]);
  243. style.set_property(right_property, values[1]);
  244. style.set_property(bottom_property, values[2]);
  245. style.set_property(left_property, values[1]);
  246. } else if (values.size() == 2) {
  247. style.set_property(top_property, values[0]);
  248. style.set_property(right_property, values[1]);
  249. style.set_property(bottom_property, values[0]);
  250. style.set_property(left_property, values[1]);
  251. } else if (values.size() == 1) {
  252. style.set_property(top_property, values[0]);
  253. style.set_property(right_property, values[0]);
  254. style.set_property(bottom_property, values[0]);
  255. style.set_property(left_property, values[0]);
  256. }
  257. };
  258. if (property_id == CSS::PropertyID::TextDecoration) {
  259. if (value.is_text_decoration()) {
  260. auto const& text_decoration = value.as_text_decoration();
  261. style.set_property(CSS::PropertyID::TextDecorationLine, text_decoration.line());
  262. style.set_property(CSS::PropertyID::TextDecorationThickness, text_decoration.thickness());
  263. style.set_property(CSS::PropertyID::TextDecorationStyle, text_decoration.style());
  264. style.set_property(CSS::PropertyID::TextDecorationColor, text_decoration.color());
  265. return;
  266. }
  267. style.set_property(CSS::PropertyID::TextDecorationLine, value);
  268. style.set_property(CSS::PropertyID::TextDecorationThickness, value);
  269. style.set_property(CSS::PropertyID::TextDecorationStyle, value);
  270. style.set_property(CSS::PropertyID::TextDecorationColor, value);
  271. return;
  272. }
  273. if (property_id == CSS::PropertyID::Overflow) {
  274. if (value.is_overflow()) {
  275. auto const& overflow = value.as_overflow();
  276. style.set_property(CSS::PropertyID::OverflowX, overflow.overflow_x());
  277. style.set_property(CSS::PropertyID::OverflowY, overflow.overflow_y());
  278. return;
  279. }
  280. style.set_property(CSS::PropertyID::OverflowX, value);
  281. style.set_property(CSS::PropertyID::OverflowY, value);
  282. return;
  283. }
  284. if (property_id == CSS::PropertyID::Border) {
  285. set_property_expanding_shorthands(style, CSS::PropertyID::BorderTop, value, document);
  286. set_property_expanding_shorthands(style, CSS::PropertyID::BorderRight, value, document);
  287. set_property_expanding_shorthands(style, CSS::PropertyID::BorderBottom, value, document);
  288. set_property_expanding_shorthands(style, CSS::PropertyID::BorderLeft, value, document);
  289. // FIXME: Also reset border-image, in line with the spec: https://www.w3.org/TR/css-backgrounds-3/#border-shorthands
  290. return;
  291. }
  292. if (property_id == CSS::PropertyID::BorderRadius) {
  293. if (value.is_border_radius_shorthand()) {
  294. auto const& shorthand = value.as_border_radius_shorthand();
  295. style.set_property(CSS::PropertyID::BorderTopLeftRadius, shorthand.top_left());
  296. style.set_property(CSS::PropertyID::BorderTopRightRadius, shorthand.top_right());
  297. style.set_property(CSS::PropertyID::BorderBottomRightRadius, shorthand.bottom_right());
  298. style.set_property(CSS::PropertyID::BorderBottomLeftRadius, shorthand.bottom_left());
  299. return;
  300. }
  301. style.set_property(CSS::PropertyID::BorderTopLeftRadius, value);
  302. style.set_property(CSS::PropertyID::BorderTopRightRadius, value);
  303. style.set_property(CSS::PropertyID::BorderBottomRightRadius, value);
  304. style.set_property(CSS::PropertyID::BorderBottomLeftRadius, value);
  305. return;
  306. }
  307. if (property_id == CSS::PropertyID::BorderTop
  308. || property_id == CSS::PropertyID::BorderRight
  309. || property_id == CSS::PropertyID::BorderBottom
  310. || property_id == CSS::PropertyID::BorderLeft) {
  311. Edge edge = Edge::All;
  312. switch (property_id) {
  313. case CSS::PropertyID::BorderTop:
  314. edge = Edge::Top;
  315. break;
  316. case CSS::PropertyID::BorderRight:
  317. edge = Edge::Right;
  318. break;
  319. case CSS::PropertyID::BorderBottom:
  320. edge = Edge::Bottom;
  321. break;
  322. case CSS::PropertyID::BorderLeft:
  323. edge = Edge::Left;
  324. break;
  325. default:
  326. break;
  327. }
  328. if (value.is_border()) {
  329. auto const& border = value.as_border();
  330. if (contains(Edge::Top, edge)) {
  331. style.set_property(PropertyID::BorderTopWidth, border.border_width());
  332. style.set_property(PropertyID::BorderTopStyle, border.border_style());
  333. style.set_property(PropertyID::BorderTopColor, border.border_color());
  334. }
  335. if (contains(Edge::Right, edge)) {
  336. style.set_property(PropertyID::BorderRightWidth, border.border_width());
  337. style.set_property(PropertyID::BorderRightStyle, border.border_style());
  338. style.set_property(PropertyID::BorderRightColor, border.border_color());
  339. }
  340. if (contains(Edge::Bottom, edge)) {
  341. style.set_property(PropertyID::BorderBottomWidth, border.border_width());
  342. style.set_property(PropertyID::BorderBottomStyle, border.border_style());
  343. style.set_property(PropertyID::BorderBottomColor, border.border_color());
  344. }
  345. if (contains(Edge::Left, edge)) {
  346. style.set_property(PropertyID::BorderLeftWidth, border.border_width());
  347. style.set_property(PropertyID::BorderLeftStyle, border.border_style());
  348. style.set_property(PropertyID::BorderLeftColor, border.border_color());
  349. }
  350. return;
  351. }
  352. return;
  353. }
  354. if (property_id == CSS::PropertyID::BorderStyle) {
  355. if (value.is_value_list()) {
  356. auto const& values_list = value.as_value_list();
  357. assign_edge_values(PropertyID::BorderTopStyle, PropertyID::BorderRightStyle, PropertyID::BorderBottomStyle, PropertyID::BorderLeftStyle, values_list.values());
  358. return;
  359. }
  360. style.set_property(CSS::PropertyID::BorderTopStyle, value);
  361. style.set_property(CSS::PropertyID::BorderRightStyle, value);
  362. style.set_property(CSS::PropertyID::BorderBottomStyle, value);
  363. style.set_property(CSS::PropertyID::BorderLeftStyle, value);
  364. return;
  365. }
  366. if (property_id == CSS::PropertyID::BorderWidth) {
  367. if (value.is_value_list()) {
  368. auto const& values_list = value.as_value_list();
  369. assign_edge_values(PropertyID::BorderTopWidth, PropertyID::BorderRightWidth, PropertyID::BorderBottomWidth, PropertyID::BorderLeftWidth, values_list.values());
  370. return;
  371. }
  372. style.set_property(CSS::PropertyID::BorderTopWidth, value);
  373. style.set_property(CSS::PropertyID::BorderRightWidth, value);
  374. style.set_property(CSS::PropertyID::BorderBottomWidth, value);
  375. style.set_property(CSS::PropertyID::BorderLeftWidth, value);
  376. return;
  377. }
  378. if (property_id == CSS::PropertyID::BorderColor) {
  379. if (value.is_value_list()) {
  380. auto const& values_list = value.as_value_list();
  381. assign_edge_values(PropertyID::BorderTopColor, PropertyID::BorderRightColor, PropertyID::BorderBottomColor, PropertyID::BorderLeftColor, values_list.values());
  382. return;
  383. }
  384. style.set_property(CSS::PropertyID::BorderTopColor, value);
  385. style.set_property(CSS::PropertyID::BorderRightColor, value);
  386. style.set_property(CSS::PropertyID::BorderBottomColor, value);
  387. style.set_property(CSS::PropertyID::BorderLeftColor, value);
  388. return;
  389. }
  390. if (property_id == CSS::PropertyID::Background) {
  391. if (value.is_background()) {
  392. auto const& background = value.as_background();
  393. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundColor, background.color(), document);
  394. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundImage, background.image(), document);
  395. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundPosition, background.position(), document);
  396. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundSize, background.size(), document);
  397. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundRepeat, background.repeat(), document);
  398. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundAttachment, background.attachment(), document);
  399. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundOrigin, background.origin(), document);
  400. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundClip, background.clip(), document);
  401. return;
  402. }
  403. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundColor, value, document);
  404. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundImage, value, document);
  405. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundPosition, value, document);
  406. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundSize, value, document);
  407. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundRepeat, value, document);
  408. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundAttachment, value, document);
  409. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundOrigin, value, document);
  410. set_property_expanding_shorthands(style, CSS::PropertyID::BackgroundClip, value, document);
  411. return;
  412. }
  413. if (property_id == CSS::PropertyID::BackgroundPosition) {
  414. if (value.is_position()) {
  415. auto const& position = value.as_position();
  416. style.set_property(CSS::PropertyID::BackgroundPositionX, position.edge_x());
  417. style.set_property(CSS::PropertyID::BackgroundPositionY, position.edge_y());
  418. } else if (value.is_value_list()) {
  419. // Expand background-position layer list into separate lists for x and y positions:
  420. auto const& values_list = value.as_value_list();
  421. StyleValueVector x_positions {};
  422. StyleValueVector y_positions {};
  423. x_positions.ensure_capacity(values_list.size());
  424. y_positions.ensure_capacity(values_list.size());
  425. for (auto& layer : values_list.values()) {
  426. if (layer->is_position()) {
  427. auto const& position = layer->as_position();
  428. x_positions.unchecked_append(position.edge_x());
  429. y_positions.unchecked_append(position.edge_y());
  430. } else {
  431. x_positions.unchecked_append(layer);
  432. y_positions.unchecked_append(layer);
  433. }
  434. }
  435. style.set_property(CSS::PropertyID::BackgroundPositionX, StyleValueList::create(move(x_positions), values_list.separator()));
  436. style.set_property(CSS::PropertyID::BackgroundPositionY, StyleValueList::create(move(y_positions), values_list.separator()));
  437. } else {
  438. style.set_property(CSS::PropertyID::BackgroundPositionX, value);
  439. style.set_property(CSS::PropertyID::BackgroundPositionY, value);
  440. }
  441. return;
  442. }
  443. if (property_id == CSS::PropertyID::Margin) {
  444. if (value.is_value_list()) {
  445. auto const& values_list = value.as_value_list();
  446. assign_edge_values(PropertyID::MarginTop, PropertyID::MarginRight, PropertyID::MarginBottom, PropertyID::MarginLeft, values_list.values());
  447. return;
  448. }
  449. style.set_property(CSS::PropertyID::MarginTop, value);
  450. style.set_property(CSS::PropertyID::MarginRight, value);
  451. style.set_property(CSS::PropertyID::MarginBottom, value);
  452. style.set_property(CSS::PropertyID::MarginLeft, value);
  453. return;
  454. }
  455. if (property_id == CSS::PropertyID::Padding) {
  456. if (value.is_value_list()) {
  457. auto const& values_list = value.as_value_list();
  458. assign_edge_values(PropertyID::PaddingTop, PropertyID::PaddingRight, PropertyID::PaddingBottom, PropertyID::PaddingLeft, values_list.values());
  459. return;
  460. }
  461. style.set_property(CSS::PropertyID::PaddingTop, value);
  462. style.set_property(CSS::PropertyID::PaddingRight, value);
  463. style.set_property(CSS::PropertyID::PaddingBottom, value);
  464. style.set_property(CSS::PropertyID::PaddingLeft, value);
  465. return;
  466. }
  467. if (property_id == CSS::PropertyID::ListStyle) {
  468. if (value.is_list_style()) {
  469. auto const& list_style = value.as_list_style();
  470. style.set_property(CSS::PropertyID::ListStylePosition, list_style.position());
  471. style.set_property(CSS::PropertyID::ListStyleImage, list_style.image());
  472. style.set_property(CSS::PropertyID::ListStyleType, list_style.style_type());
  473. return;
  474. }
  475. style.set_property(CSS::PropertyID::ListStylePosition, value);
  476. style.set_property(CSS::PropertyID::ListStyleImage, value);
  477. style.set_property(CSS::PropertyID::ListStyleType, value);
  478. return;
  479. }
  480. if (property_id == CSS::PropertyID::Font) {
  481. if (value.is_font()) {
  482. auto const& font_shorthand = value.as_font();
  483. style.set_property(CSS::PropertyID::FontSize, font_shorthand.font_size());
  484. style.set_property(CSS::PropertyID::FontFamily, font_shorthand.font_families());
  485. style.set_property(CSS::PropertyID::FontStretch, font_shorthand.font_stretch());
  486. style.set_property(CSS::PropertyID::FontStyle, font_shorthand.font_style());
  487. style.set_property(CSS::PropertyID::FontWeight, font_shorthand.font_weight());
  488. style.set_property(CSS::PropertyID::LineHeight, font_shorthand.line_height());
  489. // FIXME: Implement font-variant
  490. return;
  491. }
  492. style.set_property(CSS::PropertyID::FontStretch, value);
  493. style.set_property(CSS::PropertyID::FontSize, value);
  494. style.set_property(CSS::PropertyID::FontFamily, value);
  495. style.set_property(CSS::PropertyID::FontStyle, value);
  496. style.set_property(CSS::PropertyID::FontWeight, value);
  497. style.set_property(CSS::PropertyID::LineHeight, value);
  498. // FIXME: Implement font-variant
  499. return;
  500. }
  501. if (property_id == CSS::PropertyID::Flex) {
  502. if (value.is_flex()) {
  503. auto const& flex = value.as_flex();
  504. style.set_property(CSS::PropertyID::FlexGrow, flex.grow());
  505. style.set_property(CSS::PropertyID::FlexShrink, flex.shrink());
  506. style.set_property(CSS::PropertyID::FlexBasis, flex.basis());
  507. return;
  508. }
  509. style.set_property(CSS::PropertyID::FlexGrow, value);
  510. style.set_property(CSS::PropertyID::FlexShrink, value);
  511. style.set_property(CSS::PropertyID::FlexBasis, value);
  512. return;
  513. }
  514. if (property_id == CSS::PropertyID::FlexFlow) {
  515. if (value.is_flex_flow()) {
  516. auto const& flex_flow = value.as_flex_flow();
  517. style.set_property(CSS::PropertyID::FlexDirection, flex_flow.flex_direction());
  518. style.set_property(CSS::PropertyID::FlexWrap, flex_flow.flex_wrap());
  519. return;
  520. }
  521. style.set_property(CSS::PropertyID::FlexDirection, value);
  522. style.set_property(CSS::PropertyID::FlexWrap, value);
  523. return;
  524. }
  525. if (property_id == CSS::PropertyID::GridArea) {
  526. if (value.is_grid_area_shorthand()) {
  527. auto const& shorthand = value.as_grid_area_shorthand();
  528. style.set_property(CSS::PropertyID::GridRowStart, shorthand.row_start());
  529. style.set_property(CSS::PropertyID::GridColumnStart, shorthand.column_start());
  530. style.set_property(CSS::PropertyID::GridRowEnd, shorthand.row_end());
  531. style.set_property(CSS::PropertyID::GridColumnEnd, shorthand.column_end());
  532. return;
  533. }
  534. style.set_property(CSS::PropertyID::GridRowStart, value);
  535. style.set_property(CSS::PropertyID::GridColumnStart, value);
  536. style.set_property(CSS::PropertyID::GridRowEnd, value);
  537. style.set_property(CSS::PropertyID::GridColumnEnd, value);
  538. return;
  539. }
  540. if (property_id == CSS::PropertyID::GridColumn) {
  541. if (value.is_grid_track_placement_shorthand()) {
  542. auto const& shorthand = value.as_grid_track_placement_shorthand();
  543. style.set_property(CSS::PropertyID::GridColumnStart, shorthand.start());
  544. style.set_property(CSS::PropertyID::GridColumnEnd, shorthand.end());
  545. return;
  546. }
  547. style.set_property(CSS::PropertyID::GridColumnStart, value);
  548. style.set_property(CSS::PropertyID::GridColumnEnd, value);
  549. return;
  550. }
  551. if (property_id == CSS::PropertyID::GridRow) {
  552. if (value.is_grid_track_placement_shorthand()) {
  553. auto const& shorthand = value.as_grid_track_placement_shorthand();
  554. style.set_property(CSS::PropertyID::GridRowStart, shorthand.start());
  555. style.set_property(CSS::PropertyID::GridRowEnd, shorthand.end());
  556. return;
  557. }
  558. style.set_property(CSS::PropertyID::GridRowStart, value);
  559. style.set_property(CSS::PropertyID::GridRowEnd, value);
  560. return;
  561. }
  562. if (property_id == CSS::PropertyID::GridTemplate) {
  563. if (value.is_grid_track_size_list_shorthand()) {
  564. auto const& shorthand = value.as_grid_track_size_list_shorthand();
  565. style.set_property(CSS::PropertyID::GridTemplateAreas, shorthand.areas());
  566. style.set_property(CSS::PropertyID::GridTemplateRows, shorthand.rows());
  567. style.set_property(CSS::PropertyID::GridTemplateColumns, shorthand.columns());
  568. return;
  569. }
  570. style.set_property(CSS::PropertyID::GridTemplateAreas, value);
  571. style.set_property(CSS::PropertyID::GridTemplateRows, value);
  572. style.set_property(CSS::PropertyID::GridTemplateColumns, value);
  573. return;
  574. }
  575. if (property_id == CSS::PropertyID::Gap || property_id == CSS::PropertyID::GridGap) {
  576. if (value.is_value_list()) {
  577. auto const& values_list = value.as_value_list();
  578. style.set_property(CSS::PropertyID::RowGap, values_list.values()[0]);
  579. style.set_property(CSS::PropertyID::ColumnGap, values_list.values()[1]);
  580. return;
  581. }
  582. style.set_property(CSS::PropertyID::RowGap, value);
  583. style.set_property(CSS::PropertyID::ColumnGap, value);
  584. return;
  585. }
  586. if (property_id == CSS::PropertyID::RowGap || property_id == CSS::PropertyID::GridRowGap) {
  587. style.set_property(CSS::PropertyID::RowGap, value);
  588. return;
  589. }
  590. if (property_id == CSS::PropertyID::ColumnGap || property_id == CSS::PropertyID::GridColumnGap) {
  591. style.set_property(CSS::PropertyID::ColumnGap, value);
  592. return;
  593. }
  594. style.set_property(property_id, value);
  595. }
  596. static RefPtr<StyleValue const> get_custom_property(DOM::Element const& element, FlyString const& custom_property_name)
  597. {
  598. for (auto const* current_element = &element; current_element; current_element = current_element->parent_element()) {
  599. if (auto it = current_element->custom_properties().find(custom_property_name.to_string().to_deprecated_string()); it != current_element->custom_properties().end())
  600. return it->value.value;
  601. }
  602. return nullptr;
  603. }
  604. bool StyleComputer::expand_variables(DOM::Element& element, StringView property_name, HashMap<FlyString, NonnullRefPtr<PropertyDependencyNode>>& dependencies, Parser::TokenStream<Parser::ComponentValue>& source, Vector<Parser::ComponentValue>& dest) const
  605. {
  606. // Arbitrary large value chosen to avoid the billion-laughs attack.
  607. // https://www.w3.org/TR/css-variables-1/#long-variables
  608. const size_t MAX_VALUE_COUNT = 16384;
  609. if (source.remaining_token_count() + dest.size() > MAX_VALUE_COUNT) {
  610. dbgln("Stopped expanding CSS variables: maximum length reached.");
  611. return false;
  612. }
  613. auto get_dependency_node = [&](FlyString name) -> NonnullRefPtr<PropertyDependencyNode> {
  614. if (auto existing = dependencies.get(name); existing.has_value())
  615. return *existing.value();
  616. auto new_node = PropertyDependencyNode::create(name.to_string());
  617. dependencies.set(name, new_node);
  618. return new_node;
  619. };
  620. while (source.has_next_token()) {
  621. auto const& value = source.next_token();
  622. if (!value.is_function()) {
  623. dest.empend(value);
  624. continue;
  625. }
  626. if (!value.function().name().equals_ignoring_ascii_case("var"sv)) {
  627. auto const& source_function = value.function();
  628. Vector<Parser::ComponentValue> function_values;
  629. Parser::TokenStream source_function_contents { source_function.values() };
  630. if (!expand_variables(element, property_name, dependencies, source_function_contents, function_values))
  631. return false;
  632. NonnullRefPtr<Parser::Function> function = Parser::Function::create(FlyString::from_utf8(source_function.name()).release_value_but_fixme_should_propagate_errors(), move(function_values));
  633. dest.empend(function);
  634. continue;
  635. }
  636. Parser::TokenStream var_contents { value.function().values() };
  637. var_contents.skip_whitespace();
  638. if (!var_contents.has_next_token())
  639. return false;
  640. auto const& custom_property_name_token = var_contents.next_token();
  641. if (!custom_property_name_token.is(Parser::Token::Type::Ident))
  642. return false;
  643. auto custom_property_name = custom_property_name_token.token().ident();
  644. if (!custom_property_name.starts_with("--"sv))
  645. return false;
  646. // Detect dependency cycles. https://www.w3.org/TR/css-variables-1/#cycles
  647. // We do not do this by the spec, since we are not keeping a graph of var dependencies around,
  648. // but rebuilding it every time.
  649. if (custom_property_name == property_name)
  650. return false;
  651. auto parent = get_dependency_node(FlyString::from_utf8(property_name).release_value_but_fixme_should_propagate_errors());
  652. auto child = get_dependency_node(FlyString::from_utf8(custom_property_name).release_value_but_fixme_should_propagate_errors());
  653. parent->add_child(child);
  654. if (parent->has_cycles())
  655. return false;
  656. if (auto custom_property_value = get_custom_property(element, FlyString::from_utf8(custom_property_name).release_value_but_fixme_should_propagate_errors())) {
  657. VERIFY(custom_property_value->is_unresolved());
  658. Parser::TokenStream custom_property_tokens { custom_property_value->as_unresolved().values() };
  659. if (!expand_variables(element, custom_property_name, dependencies, custom_property_tokens, dest))
  660. return false;
  661. continue;
  662. }
  663. // Use the provided fallback value, if any.
  664. var_contents.skip_whitespace();
  665. if (var_contents.has_next_token()) {
  666. auto const& comma_token = var_contents.next_token();
  667. if (!comma_token.is(Parser::Token::Type::Comma))
  668. return false;
  669. var_contents.skip_whitespace();
  670. if (!expand_variables(element, property_name, dependencies, var_contents, dest))
  671. return false;
  672. }
  673. }
  674. return true;
  675. }
  676. bool StyleComputer::expand_unresolved_values(DOM::Element& element, StringView property_name, Parser::TokenStream<Parser::ComponentValue>& source, Vector<Parser::ComponentValue>& dest) const
  677. {
  678. // FIXME: Do this better!
  679. // We build a copy of the tree of ComponentValues, with all var()s and attr()s replaced with their contents.
  680. // This is a very naive solution, and we could do better if the CSS Parser could accept tokens one at a time.
  681. while (source.has_next_token()) {
  682. auto const& value = source.next_token();
  683. if (value.is_function()) {
  684. if (value.function().name().equals_ignoring_ascii_case("attr"sv)) {
  685. // https://drafts.csswg.org/css-values-5/#attr-substitution
  686. Parser::TokenStream attr_contents { value.function().values() };
  687. attr_contents.skip_whitespace();
  688. if (!attr_contents.has_next_token())
  689. return false;
  690. auto const& attr_name_token = attr_contents.next_token();
  691. if (!attr_name_token.is(Parser::Token::Type::Ident))
  692. return false;
  693. auto attr_name = attr_name_token.token().ident();
  694. auto attr_value = element.get_attribute(attr_name);
  695. // 1. If the attr() function has a substitution value, replace the attr() function by the substitution value.
  696. if (!attr_value.is_null()) {
  697. // FIXME: attr() should also accept an optional type argument, not just strings.
  698. dest.empend(Parser::Token::of_string(FlyString::from_deprecated_fly_string(attr_value).release_value_but_fixme_should_propagate_errors()));
  699. continue;
  700. }
  701. // 2. Otherwise, if the attr() function has a fallback value as its last argument, replace the attr() function by the fallback value.
  702. // If there are any var() or attr() references in the fallback, substitute them as well.
  703. attr_contents.skip_whitespace();
  704. if (attr_contents.has_next_token()) {
  705. auto const& comma_token = attr_contents.next_token();
  706. if (!comma_token.is(Parser::Token::Type::Comma))
  707. return false;
  708. attr_contents.skip_whitespace();
  709. if (!expand_unresolved_values(element, property_name, attr_contents, dest))
  710. return false;
  711. continue;
  712. }
  713. // 3. Otherwise, the property containing the attr() function is invalid at computed-value time.
  714. return false;
  715. }
  716. if (value.function().name().equals_ignoring_ascii_case("calc"sv)) {
  717. auto const& calc_function = value.function();
  718. if (auto calc_value = CSS::Parser::Parser::parse_calculated_value({}, Parser::ParsingContext { document() }, calc_function.values())) {
  719. switch (calc_value->resolved_type()) {
  720. case CalculatedStyleValue::ResolvedType::Integer: {
  721. auto resolved_value = calc_value->resolve_integer();
  722. dest.empend(Parser::Token::create_number(resolved_value.value()));
  723. continue;
  724. }
  725. case CalculatedStyleValue::ResolvedType::Percentage: {
  726. auto resolved_value = calc_value->resolve_percentage();
  727. dest.empend(Parser::Token::create_percentage(resolved_value.value().value()));
  728. continue;
  729. }
  730. default:
  731. dbgln("FIXME: Unimplemented calc() expansion: {}", calc_value->to_string());
  732. break;
  733. }
  734. }
  735. }
  736. auto const& source_function = value.function();
  737. Vector<Parser::ComponentValue> function_values;
  738. Parser::TokenStream source_function_contents { source_function.values() };
  739. if (!expand_unresolved_values(element, property_name, source_function_contents, function_values))
  740. return false;
  741. // FIXME: This would be much nicer if we could access the source_function's FlyString value directly.
  742. NonnullRefPtr<Parser::Function> function = Parser::Function::create(FlyString::from_utf8(source_function.name()).release_value_but_fixme_should_propagate_errors(), move(function_values));
  743. dest.empend(function);
  744. continue;
  745. }
  746. if (value.is_block()) {
  747. auto const& source_block = value.block();
  748. Parser::TokenStream source_block_values { source_block.values() };
  749. Vector<Parser::ComponentValue> block_values;
  750. if (!expand_unresolved_values(element, property_name, source_block_values, block_values))
  751. return false;
  752. NonnullRefPtr<Parser::Block> block = Parser::Block::create(source_block.token(), move(block_values));
  753. dest.empend(move(block));
  754. continue;
  755. }
  756. dest.empend(value.token());
  757. }
  758. return true;
  759. }
  760. RefPtr<StyleValue> StyleComputer::resolve_unresolved_style_value(DOM::Element& element, PropertyID property_id, UnresolvedStyleValue const& unresolved) const
  761. {
  762. // Unresolved always contains a var() or attr(), unless it is a custom property's value, in which case we shouldn't be trying
  763. // to produce a different StyleValue from it.
  764. VERIFY(unresolved.contains_var_or_attr());
  765. Parser::TokenStream unresolved_values_without_variables_expanded { unresolved.values() };
  766. Vector<Parser::ComponentValue> values_with_variables_expanded;
  767. HashMap<FlyString, NonnullRefPtr<PropertyDependencyNode>> dependencies;
  768. if (!expand_variables(element, string_from_property_id(property_id), dependencies, unresolved_values_without_variables_expanded, values_with_variables_expanded))
  769. return {};
  770. Parser::TokenStream unresolved_values_with_variables_expanded { values_with_variables_expanded };
  771. Vector<Parser::ComponentValue> expanded_values;
  772. if (!expand_unresolved_values(element, string_from_property_id(property_id), unresolved_values_with_variables_expanded, expanded_values))
  773. return {};
  774. if (auto parsed_value = Parser::Parser::parse_css_value({}, Parser::ParsingContext { document() }, property_id, expanded_values))
  775. return parsed_value.release_nonnull();
  776. return {};
  777. }
  778. 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
  779. {
  780. for (auto const& match : matching_rules) {
  781. for (auto const& property : verify_cast<PropertyOwningCSSStyleDeclaration>(match.rule->declaration()).properties()) {
  782. if (important != property.important)
  783. continue;
  784. auto property_value = property.value;
  785. if (property.value->is_unresolved()) {
  786. if (auto resolved = resolve_unresolved_style_value(element, property.property_id, property.value->as_unresolved()))
  787. property_value = resolved.release_nonnull();
  788. }
  789. if (!property_value->is_unresolved())
  790. set_property_expanding_shorthands(style, property.property_id, property_value, m_document);
  791. }
  792. }
  793. if (cascade_origin == CascadeOrigin::Author && !pseudo_element.has_value()) {
  794. if (auto const* inline_style = verify_cast<ElementInlineCSSStyleDeclaration>(element.inline_style())) {
  795. for (auto const& property : inline_style->properties()) {
  796. if (important != property.important)
  797. continue;
  798. auto property_value = property.value;
  799. if (property.value->is_unresolved()) {
  800. if (auto resolved = resolve_unresolved_style_value(element, property.property_id, property.value->as_unresolved()))
  801. property_value = resolved.release_nonnull();
  802. }
  803. if (!property_value->is_unresolved())
  804. set_property_expanding_shorthands(style, property.property_id, property_value, m_document);
  805. }
  806. }
  807. }
  808. }
  809. static ErrorOr<void> cascade_custom_properties(DOM::Element& element, Vector<MatchingRule> const& matching_rules)
  810. {
  811. size_t needed_capacity = 0;
  812. for (auto const& matching_rule : matching_rules)
  813. needed_capacity += verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties().size();
  814. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style()))
  815. needed_capacity += inline_style->custom_properties().size();
  816. HashMap<DeprecatedFlyString, StyleProperty> custom_properties;
  817. TRY(custom_properties.try_ensure_capacity(needed_capacity));
  818. for (auto const& matching_rule : matching_rules) {
  819. for (auto const& it : verify_cast<PropertyOwningCSSStyleDeclaration>(matching_rule.rule->declaration()).custom_properties())
  820. custom_properties.set(it.key, it.value);
  821. }
  822. if (auto const* inline_style = verify_cast<PropertyOwningCSSStyleDeclaration>(element.inline_style())) {
  823. for (auto const& it : inline_style->custom_properties())
  824. custom_properties.set(it.key, it.value);
  825. }
  826. element.set_custom_properties(move(custom_properties));
  827. return {};
  828. }
  829. // https://www.w3.org/TR/css-cascade/#cascading
  830. 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
  831. {
  832. // First, we collect all the CSS rules whose selectors match `element`:
  833. MatchingRuleSet matching_rule_set;
  834. matching_rule_set.user_agent_rules = collect_matching_rules(element, CascadeOrigin::UserAgent, pseudo_element);
  835. sort_matching_rules(matching_rule_set.user_agent_rules);
  836. matching_rule_set.author_rules = collect_matching_rules(element, CascadeOrigin::Author, pseudo_element);
  837. sort_matching_rules(matching_rule_set.author_rules);
  838. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded) {
  839. VERIFY(pseudo_element.has_value());
  840. if (matching_rule_set.author_rules.is_empty() && matching_rule_set.user_agent_rules.is_empty()) {
  841. did_match_any_pseudo_element_rules = false;
  842. return {};
  843. }
  844. did_match_any_pseudo_element_rules = true;
  845. }
  846. // Then we resolve all the CSS custom properties ("variables") for this element:
  847. // FIXME: Look into how custom properties should interact with pseudo elements and support that properly.
  848. if (!pseudo_element.has_value())
  849. TRY(cascade_custom_properties(element, matching_rule_set.author_rules));
  850. // Then we apply the declarations from the matched rules in cascade order:
  851. // Normal user agent declarations
  852. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::No);
  853. // FIXME: Normal user declarations
  854. // Author presentational hints (NOTE: The spec doesn't say exactly how to prioritize these.)
  855. if (!pseudo_element.has_value())
  856. element.apply_presentational_hints(style);
  857. // Normal author declarations
  858. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::No);
  859. // FIXME: Animation declarations [css-animations-1]
  860. // Important author declarations
  861. cascade_declarations(style, element, pseudo_element, matching_rule_set.author_rules, CascadeOrigin::Author, Important::Yes);
  862. // FIXME: Important user declarations
  863. // Important user agent declarations
  864. cascade_declarations(style, element, pseudo_element, matching_rule_set.user_agent_rules, CascadeOrigin::UserAgent, Important::Yes);
  865. // FIXME: Transition declarations [css-transitions-1]
  866. return {};
  867. }
  868. static DOM::Element const* element_to_inherit_style_from(DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element)
  869. {
  870. // Pseudo-elements treat their originating element as their parent.
  871. DOM::Element const* parent_element = nullptr;
  872. if (pseudo_element.has_value()) {
  873. parent_element = element;
  874. } else if (element) {
  875. parent_element = element->parent_or_shadow_host_element();
  876. }
  877. return parent_element;
  878. }
  879. 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)
  880. {
  881. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  882. if (!parent_element || !parent_element->computed_css_values())
  883. return property_initial_value(initial_value_context_realm, property_id);
  884. return parent_element->computed_css_values()->property(property_id);
  885. };
  886. void StyleComputer::compute_defaulted_property_value(StyleProperties& style, DOM::Element const* element, CSS::PropertyID property_id, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  887. {
  888. // FIXME: If we don't know the correct initial value for a property, we fall back to InitialStyleValue.
  889. auto& value_slot = style.m_property_values[to_underlying(property_id)];
  890. if (!value_slot) {
  891. if (is_inherited_property(property_id))
  892. style.m_property_values[to_underlying(property_id)] = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  893. else
  894. style.m_property_values[to_underlying(property_id)] = property_initial_value(document().realm(), property_id);
  895. return;
  896. }
  897. if (value_slot->is_initial()) {
  898. value_slot = property_initial_value(document().realm(), property_id);
  899. return;
  900. }
  901. if (value_slot->is_inherit()) {
  902. value_slot = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  903. return;
  904. }
  905. // https://www.w3.org/TR/css-cascade-4/#inherit-initial
  906. // If the cascaded value of a property is the unset keyword,
  907. if (value_slot->is_unset()) {
  908. if (is_inherited_property(property_id)) {
  909. // then if it is an inherited property, this is treated as inherit,
  910. value_slot = get_inherit_value(document().realm(), property_id, element, pseudo_element);
  911. } else {
  912. // and if it is not, this is treated as initial.
  913. value_slot = property_initial_value(document().realm(), property_id);
  914. }
  915. }
  916. }
  917. // https://www.w3.org/TR/css-cascade/#defaulting
  918. void StyleComputer::compute_defaulted_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  919. {
  920. // Walk the list of all known CSS properties and:
  921. // - Add them to `style` if they are missing.
  922. // - Resolve `inherit` and `initial` as needed.
  923. for (auto i = to_underlying(CSS::first_longhand_property_id); i <= to_underlying(CSS::last_longhand_property_id); ++i) {
  924. auto property_id = (CSS::PropertyID)i;
  925. compute_defaulted_property_value(style, element, property_id, pseudo_element);
  926. }
  927. }
  928. Length::FontMetrics StyleComputer::root_element_font_metrics() const
  929. {
  930. Length::FontMetrics const default_font_metrics { 16, Gfx::FontDatabase::default_font().pixel_metrics(), 16 };
  931. auto const* root_element = m_document->first_child_of_type<HTML::HTMLHtmlElement>();
  932. if (!root_element)
  933. return default_font_metrics;
  934. auto const* computed_root_style = root_element->computed_css_values();
  935. if (!computed_root_style)
  936. return default_font_metrics;
  937. auto root_value = computed_root_style->property(CSS::PropertyID::FontSize);
  938. auto font_pixel_metrics = computed_root_style->computed_font().pixel_metrics();
  939. Length::FontMetrics font_metrics { default_font_metrics.font_size, font_pixel_metrics, font_pixel_metrics.line_spacing() };
  940. font_metrics.font_size = root_value->to_length().to_px(viewport_rect(), font_metrics, font_metrics);
  941. font_metrics.line_height = computed_root_style->line_height(viewport_rect(), font_metrics, font_metrics);
  942. return font_metrics;
  943. }
  944. void StyleComputer::compute_font(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  945. {
  946. // To compute the font, first ensure that we've defaulted the relevant CSS font properties.
  947. // FIXME: This should be more sophisticated.
  948. compute_defaulted_property_value(style, element, CSS::PropertyID::FontFamily, pseudo_element);
  949. compute_defaulted_property_value(style, element, CSS::PropertyID::FontSize, pseudo_element);
  950. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStretch, pseudo_element);
  951. compute_defaulted_property_value(style, element, CSS::PropertyID::FontStyle, pseudo_element);
  952. compute_defaulted_property_value(style, element, CSS::PropertyID::FontWeight, pseudo_element);
  953. compute_defaulted_property_value(style, element, CSS::PropertyID::LineHeight, pseudo_element);
  954. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  955. auto font_size = style.property(CSS::PropertyID::FontSize);
  956. auto font_style = style.property(CSS::PropertyID::FontStyle);
  957. auto font_weight = style.property(CSS::PropertyID::FontWeight);
  958. auto font_stretch = style.property(CSS::PropertyID::FontStretch);
  959. int width = Gfx::FontWidth::Normal;
  960. if (font_stretch->is_identifier()) {
  961. switch (static_cast<IdentifierStyleValue const&>(*font_stretch).id()) {
  962. case CSS::ValueID::UltraCondensed:
  963. width = Gfx::FontWidth::UltraCondensed;
  964. break;
  965. case CSS::ValueID::ExtraCondensed:
  966. width = Gfx::FontWidth::ExtraCondensed;
  967. break;
  968. case CSS::ValueID::Condensed:
  969. width = Gfx::FontWidth::Condensed;
  970. break;
  971. case CSS::ValueID::SemiCondensed:
  972. width = Gfx::FontWidth::SemiCondensed;
  973. break;
  974. case CSS::ValueID::Normal:
  975. width = Gfx::FontWidth::Normal;
  976. break;
  977. case CSS::ValueID::SemiExpanded:
  978. width = Gfx::FontWidth::SemiExpanded;
  979. break;
  980. case CSS::ValueID::Expanded:
  981. width = Gfx::FontWidth::Expanded;
  982. break;
  983. case CSS::ValueID::ExtraExpanded:
  984. width = Gfx::FontWidth::ExtraExpanded;
  985. break;
  986. case CSS::ValueID::UltraExpanded:
  987. width = Gfx::FontWidth::UltraExpanded;
  988. break;
  989. default:
  990. break;
  991. }
  992. } else if (font_stretch->is_percentage()) {
  993. float percentage = font_stretch->as_percentage().percentage().value();
  994. if (percentage <= 50) {
  995. width = Gfx::FontWidth::UltraCondensed;
  996. } else if (percentage <= 62.5f) {
  997. width = Gfx::FontWidth::ExtraCondensed;
  998. } else if (percentage <= 75.0f) {
  999. width = Gfx::FontWidth::Condensed;
  1000. } else if (percentage <= 87.5f) {
  1001. width = Gfx::FontWidth::SemiCondensed;
  1002. } else if (percentage <= 100.0f) {
  1003. width = Gfx::FontWidth::Normal;
  1004. } else if (percentage <= 112.5f) {
  1005. width = Gfx::FontWidth::SemiExpanded;
  1006. } else if (percentage <= 125.0f) {
  1007. width = Gfx::FontWidth::Expanded;
  1008. } else if (percentage <= 150.0f) {
  1009. width = Gfx::FontWidth::ExtraExpanded;
  1010. } else {
  1011. width = Gfx::FontWidth::UltraExpanded;
  1012. }
  1013. }
  1014. int weight = Gfx::FontWeight::Regular;
  1015. if (font_weight->is_identifier()) {
  1016. switch (static_cast<IdentifierStyleValue const&>(*font_weight).id()) {
  1017. case CSS::ValueID::Normal:
  1018. weight = Gfx::FontWeight::Regular;
  1019. break;
  1020. case CSS::ValueID::Bold:
  1021. weight = Gfx::FontWeight::Bold;
  1022. break;
  1023. case CSS::ValueID::Lighter:
  1024. // FIXME: This should be relative to the parent.
  1025. weight = Gfx::FontWeight::Regular;
  1026. break;
  1027. case CSS::ValueID::Bolder:
  1028. // FIXME: This should be relative to the parent.
  1029. weight = Gfx::FontWeight::Bold;
  1030. break;
  1031. default:
  1032. break;
  1033. }
  1034. } else if (font_weight->has_integer()) {
  1035. int font_weight_integer = font_weight->to_integer();
  1036. if (font_weight_integer <= Gfx::FontWeight::Regular)
  1037. weight = Gfx::FontWeight::Regular;
  1038. else if (font_weight_integer <= Gfx::FontWeight::Bold)
  1039. weight = Gfx::FontWeight::Bold;
  1040. else
  1041. weight = Gfx::FontWeight::Black;
  1042. } else if (font_weight->is_calculated()) {
  1043. auto maybe_weight = const_cast<CalculatedStyleValue&>(font_weight->as_calculated()).resolve_integer();
  1044. if (maybe_weight.has_value())
  1045. weight = maybe_weight.value();
  1046. }
  1047. bool bold = weight > Gfx::FontWeight::Regular;
  1048. // FIXME: Should be based on "user's default font size"
  1049. float font_size_in_px = 16;
  1050. if (font_size->is_identifier()) {
  1051. // https://w3c.github.io/csswg-drafts/css-fonts/#absolute-size-mapping
  1052. AK::HashMap<Web::CSS::ValueID, float> absolute_size_mapping = {
  1053. { CSS::ValueID::XxSmall, 0.6 },
  1054. { CSS::ValueID::XSmall, 0.75 },
  1055. { CSS::ValueID::Small, 8.0 / 9.0 },
  1056. { CSS::ValueID::Medium, 1.0 },
  1057. { CSS::ValueID::Large, 1.2 },
  1058. { CSS::ValueID::XLarge, 1.5 },
  1059. { CSS::ValueID::XxLarge, 2.0 },
  1060. { CSS::ValueID::XxxLarge, 3.0 },
  1061. { CSS::ValueID::Smaller, 0.8 },
  1062. { CSS::ValueID::Larger, 1.25 },
  1063. };
  1064. auto const identifier = static_cast<IdentifierStyleValue const&>(*font_size).id();
  1065. // https://w3c.github.io/csswg-drafts/css-fonts/#valdef-font-size-relative-size
  1066. // TODO: If the parent element has a keyword font size in the absolute size keyword mapping table,
  1067. // larger may compute the font size to the next entry in the table,
  1068. // and smaller may compute the font size to the previous entry in the table.
  1069. if (identifier == CSS::ValueID::Smaller || identifier == CSS::ValueID::Larger) {
  1070. if (parent_element && parent_element->computed_css_values()) {
  1071. font_size_in_px = parent_element->computed_css_values()->computed_font().pixel_metrics().size;
  1072. }
  1073. }
  1074. auto const multiplier = absolute_size_mapping.get(identifier).value_or(1.0);
  1075. font_size_in_px *= multiplier;
  1076. } else {
  1077. auto root_font_metrics = root_element_font_metrics();
  1078. Gfx::FontPixelMetrics font_pixel_metrics;
  1079. if (parent_element && parent_element->computed_css_values())
  1080. font_pixel_metrics = parent_element->computed_css_values()->computed_font().pixel_metrics();
  1081. else
  1082. font_pixel_metrics = Platform::FontPlugin::the().default_font().pixel_metrics();
  1083. auto parent_font_size = [&]() -> CSSPixels {
  1084. if (!parent_element || !parent_element->computed_css_values())
  1085. return font_size_in_px;
  1086. auto value = parent_element->computed_css_values()->property(CSS::PropertyID::FontSize);
  1087. if (value->is_length()) {
  1088. auto length = static_cast<LengthStyleValue const&>(*value).to_length();
  1089. auto parent_line_height = parent_or_root_element_line_height(parent_element, {});
  1090. if (length.is_absolute() || length.is_relative()) {
  1091. Length::FontMetrics font_metrics { font_size_in_px, font_pixel_metrics, parent_line_height };
  1092. return length.to_px(viewport_rect(), font_metrics, root_font_metrics);
  1093. }
  1094. }
  1095. return font_size_in_px;
  1096. };
  1097. Optional<Length> maybe_length;
  1098. if (font_size->is_percentage()) {
  1099. // Percentages refer to parent element's font size
  1100. maybe_length = Length::make_px(font_size->as_percentage().percentage().as_fraction() * parent_font_size());
  1101. } else if (font_size->is_length()) {
  1102. maybe_length = font_size->to_length();
  1103. } else if (font_size->is_calculated()) {
  1104. // FIXME: Support font-size: calc(...)
  1105. // Theoretically we can do this now, but to resolve it we need a layout_node which we might not have. :^(
  1106. }
  1107. if (maybe_length.has_value()) {
  1108. auto parent_line_height = parent_or_root_element_line_height(element, pseudo_element);
  1109. Length::FontMetrics font_metrics { parent_font_size(), font_pixel_metrics, parent_line_height };
  1110. auto px = maybe_length.value().to_px(viewport_rect(), font_metrics, root_font_metrics).value();
  1111. if (px != 0)
  1112. font_size_in_px = px;
  1113. }
  1114. }
  1115. int slope = Gfx::name_to_slope("Normal"sv);
  1116. // FIXME: Implement oblique <angle>
  1117. if (font_style->is_identifier()) {
  1118. switch (static_cast<IdentifierStyleValue const&>(*font_style).id()) {
  1119. case CSS::ValueID::Italic:
  1120. slope = Gfx::name_to_slope("Italic"sv);
  1121. break;
  1122. case CSS::ValueID::Oblique:
  1123. slope = Gfx::name_to_slope("Oblique"sv);
  1124. break;
  1125. case CSS::ValueID::Normal:
  1126. default:
  1127. break;
  1128. }
  1129. }
  1130. // FIXME: Implement the full font-matching algorithm: https://www.w3.org/TR/css-fonts-4/#font-matching-algorithm
  1131. // Note: This is modified by the find_font() lambda
  1132. FontSelector font_selector;
  1133. bool monospace = false;
  1134. auto find_font = [&](String const& family) -> RefPtr<Gfx::Font const> {
  1135. float font_size_in_pt = font_size_in_px * 0.75f;
  1136. font_selector = { family, font_size_in_pt, weight, width, slope };
  1137. if (auto it = m_loaded_fonts.find(family); it != m_loaded_fonts.end()) {
  1138. auto& loader = *it->value;
  1139. if (auto found_font = loader.font_with_point_size(font_size_in_pt))
  1140. return found_font;
  1141. }
  1142. if (auto found_font = FontCache::the().get(font_selector))
  1143. return found_font;
  1144. if (auto found_font = Gfx::FontDatabase::the().get(family.to_deprecated_string(), font_size_in_pt, weight, width, slope, Gfx::Font::AllowInexactSizeMatch::Yes))
  1145. return found_font;
  1146. return {};
  1147. };
  1148. auto find_generic_font = [&](ValueID font_id) -> RefPtr<Gfx::Font const> {
  1149. Platform::GenericFont generic_font {};
  1150. switch (font_id) {
  1151. case ValueID::Monospace:
  1152. case ValueID::UiMonospace:
  1153. generic_font = Platform::GenericFont::Monospace;
  1154. monospace = true;
  1155. break;
  1156. case ValueID::Serif:
  1157. generic_font = Platform::GenericFont::Serif;
  1158. break;
  1159. case ValueID::Fantasy:
  1160. generic_font = Platform::GenericFont::Fantasy;
  1161. break;
  1162. case ValueID::SansSerif:
  1163. generic_font = Platform::GenericFont::SansSerif;
  1164. break;
  1165. case ValueID::Cursive:
  1166. generic_font = Platform::GenericFont::Cursive;
  1167. break;
  1168. case ValueID::UiSerif:
  1169. generic_font = Platform::GenericFont::UiSerif;
  1170. break;
  1171. case ValueID::UiSansSerif:
  1172. generic_font = Platform::GenericFont::UiSansSerif;
  1173. break;
  1174. case ValueID::UiRounded:
  1175. generic_font = Platform::GenericFont::UiRounded;
  1176. break;
  1177. default:
  1178. return {};
  1179. }
  1180. return find_font(String::from_utf8(Platform::FontPlugin::the().generic_font_name(generic_font)).release_value_but_fixme_should_propagate_errors());
  1181. };
  1182. RefPtr<Gfx::Font const> found_font;
  1183. auto family_value = style.property(PropertyID::FontFamily);
  1184. if (family_value->is_value_list()) {
  1185. auto const& family_list = static_cast<StyleValueList const&>(*family_value).values();
  1186. for (auto const& family : family_list) {
  1187. if (family->is_identifier()) {
  1188. found_font = find_generic_font(family->to_identifier());
  1189. } else if (family->is_string()) {
  1190. found_font = find_font(family->to_string().release_value_but_fixme_should_propagate_errors());
  1191. }
  1192. if (found_font)
  1193. break;
  1194. }
  1195. } else if (family_value->is_identifier()) {
  1196. found_font = find_generic_font(family_value->to_identifier());
  1197. } else if (family_value->is_string()) {
  1198. found_font = find_font(family_value->to_string().release_value_but_fixme_should_propagate_errors());
  1199. }
  1200. if (!found_font) {
  1201. found_font = StyleProperties::font_fallback(monospace, bold);
  1202. }
  1203. FontCache::the().set(font_selector, *found_font);
  1204. style.set_property(CSS::PropertyID::FontSize, LengthStyleValue::create(CSS::Length::make_px(font_size_in_px)));
  1205. style.set_property(CSS::PropertyID::FontWeight, NumericStyleValue::create_integer(weight));
  1206. style.set_computed_font(found_font.release_nonnull());
  1207. }
  1208. Gfx::Font const& StyleComputer::initial_font() const
  1209. {
  1210. // FIXME: This is not correct.
  1211. return StyleProperties::font_fallback(false, false);
  1212. }
  1213. CSSPixels StyleComputer::parent_or_root_element_line_height(DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1214. {
  1215. auto root_font_metrics = root_element_font_metrics();
  1216. auto* parent_element = element_to_inherit_style_from(element, pseudo_element);
  1217. if (!parent_element)
  1218. return root_font_metrics.line_height;
  1219. auto* computed_values = parent_element->computed_css_values();
  1220. auto parent_font_pixel_metrics = parent_element->layout_node()
  1221. ? parent_element->layout_node()->font().pixel_metrics()
  1222. : Gfx::FontDatabase::default_font().pixel_metrics();
  1223. auto parent_font_size = computed_values->property(CSS::PropertyID::FontSize)->to_length();
  1224. // FIXME: Can the parent font size be non-absolute here?
  1225. auto parent_font_size_value = parent_font_size.is_absolute() ? parent_font_size.absolute_length_to_px() : root_font_metrics.font_size;
  1226. auto parent_parent_line_height = parent_or_root_element_line_height(parent_element, {});
  1227. Length::FontMetrics parent_font_metrics { parent_font_size_value, parent_font_pixel_metrics, parent_parent_line_height };
  1228. return computed_values->line_height(viewport_rect(), parent_font_metrics, root_font_metrics);
  1229. }
  1230. void StyleComputer::absolutize_values(StyleProperties& style, DOM::Element const* element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1231. {
  1232. auto parent_or_root_line_height = parent_or_root_element_line_height(element, pseudo_element);
  1233. auto font_pixel_metrics = style.computed_font().pixel_metrics();
  1234. auto root_font_metrics = root_element_font_metrics();
  1235. Length::FontMetrics font_metrics { root_font_metrics.font_size, font_pixel_metrics, parent_or_root_line_height };
  1236. auto font_size = style.property(CSS::PropertyID::FontSize)->to_length().to_px(viewport_rect(), font_metrics, root_font_metrics);
  1237. font_metrics.font_size = font_size;
  1238. // NOTE: Percentage line-height values are relative to the font-size of the element.
  1239. // We have to resolve them right away, so that the *computed* line-height is ready for inheritance.
  1240. // We can't simply absolutize *all* percentage values against the font size,
  1241. // because most percentages are relative to containing block metrics.
  1242. auto& line_height_value_slot = style.m_property_values[to_underlying(CSS::PropertyID::LineHeight)];
  1243. if (line_height_value_slot && line_height_value_slot->is_percentage()) {
  1244. line_height_value_slot = LengthStyleValue::create(
  1245. Length::make_px(font_size * line_height_value_slot->as_percentage().percentage().as_fraction()));
  1246. }
  1247. auto line_height = style.line_height(viewport_rect(), font_metrics, root_font_metrics);
  1248. font_metrics.line_height = line_height;
  1249. // NOTE: line-height might be using lh which should be resolved against the parent line height (like we did here already)
  1250. if (line_height_value_slot && line_height_value_slot->is_length())
  1251. line_height_value_slot = LengthStyleValue::create(Length::make_px(line_height));
  1252. for (size_t i = 0; i < style.m_property_values.size(); ++i) {
  1253. auto& value_slot = style.m_property_values[i];
  1254. if (!value_slot)
  1255. continue;
  1256. value_slot = value_slot->absolutized(viewport_rect(), font_metrics, root_font_metrics);
  1257. }
  1258. }
  1259. enum class BoxTypeTransformation {
  1260. None,
  1261. Blockify,
  1262. Inlinify,
  1263. };
  1264. static BoxTypeTransformation required_box_type_transformation(StyleProperties const& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement> const& pseudo_element)
  1265. {
  1266. // Absolute positioning or floating an element blockifies the box’s display type. [CSS2]
  1267. if (style.position() == CSS::Position::Absolute || style.position() == CSS::Position::Fixed || style.float_() != CSS::Float::None)
  1268. return BoxTypeTransformation::Blockify;
  1269. // FIXME: Containment in a ruby container inlinifies the box’s display type, as described in [CSS-RUBY-1].
  1270. // NOTE: If we're computing style for a pseudo-element, the effective parent will be the originating element itself, not its parent.
  1271. auto const* parent = pseudo_element.has_value() ? &element : element.parent_element();
  1272. // A parent with a grid or flex display value blockifies the box’s display type. [CSS-GRID-1] [CSS-FLEXBOX-1]
  1273. if (parent && parent->computed_css_values()) {
  1274. auto const& parent_display = parent->computed_css_values()->display();
  1275. if (parent_display.is_grid_inside() || parent_display.is_flex_inside())
  1276. return BoxTypeTransformation::Blockify;
  1277. }
  1278. return BoxTypeTransformation::None;
  1279. }
  1280. // https://drafts.csswg.org/css-display/#transformations
  1281. void StyleComputer::transform_box_type_if_needed(StyleProperties& style, DOM::Element const& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1282. {
  1283. // 2.7. Automatic Box Type Transformations
  1284. // Some layout effects require blockification or inlinification of the box type,
  1285. // which sets the box’s computed outer display type to block or inline (respectively).
  1286. // (This has no effect on display types that generate no box at all, such as none or contents.)
  1287. // FIXME: If a block box (block flow) is inlinified, its inner display type is set to flow-root so that it remains a block container.
  1288. //
  1289. // FIXME: If an inline box (inline flow) is inlinified, it recursively inlinifies all of its in-flow children,
  1290. // so that no block-level descendants break up the inline formatting context in which it participates.
  1291. //
  1292. // FIXME: For legacy reasons, if an inline block box (inline flow-root) is blockified, it becomes a block box (losing its flow-root nature).
  1293. // For consistency, a run-in flow-root box also blockifies to a block box.
  1294. //
  1295. // FIXME: If a layout-internal box is blockified, its inner display type converts to flow so that it becomes a block container.
  1296. // Inlinification has no effect on layout-internal boxes. (However, placement in such an inline context will typically cause them
  1297. // to be wrapped in an appropriately-typed anonymous inline-level box.)
  1298. auto display = style.display();
  1299. if (display.is_none() || display.is_contents())
  1300. return;
  1301. switch (required_box_type_transformation(style, element, pseudo_element)) {
  1302. case BoxTypeTransformation::None:
  1303. break;
  1304. case BoxTypeTransformation::Blockify:
  1305. if (!display.is_block_outside()) {
  1306. // FIXME: We only want to change the outer display type here, but we don't have a nice API
  1307. // to do that specifically. For now, we simply check for "inline-flex" and convert
  1308. // that to "flex".
  1309. if (display.is_flex_inside())
  1310. style.set_property(CSS::PropertyID::Display, IdentifierStyleValue::create(CSS::ValueID::Flex));
  1311. else
  1312. style.set_property(CSS::PropertyID::Display, IdentifierStyleValue::create(CSS::ValueID::Block));
  1313. }
  1314. break;
  1315. case BoxTypeTransformation::Inlinify:
  1316. if (!display.is_inline_outside())
  1317. style.set_property(CSS::PropertyID::Display, IdentifierStyleValue::create(CSS::ValueID::Inline));
  1318. break;
  1319. }
  1320. }
  1321. NonnullRefPtr<StyleProperties> StyleComputer::create_document_style() const
  1322. {
  1323. auto style = StyleProperties::create();
  1324. compute_font(style, nullptr, {});
  1325. compute_defaulted_values(style, nullptr, {});
  1326. absolutize_values(style, nullptr, {});
  1327. style->set_property(CSS::PropertyID::Width, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().width())));
  1328. style->set_property(CSS::PropertyID::Height, CSS::LengthStyleValue::create(CSS::Length::make_px(viewport_rect().height())));
  1329. style->set_property(CSS::PropertyID::Display, CSS::IdentifierStyleValue::create(CSS::ValueID::Block));
  1330. return style;
  1331. }
  1332. ErrorOr<NonnullRefPtr<StyleProperties>> StyleComputer::compute_style(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1333. {
  1334. auto style = TRY(compute_style_impl(element, move(pseudo_element), ComputeStyleMode::Normal));
  1335. return style.release_nonnull();
  1336. }
  1337. ErrorOr<RefPtr<StyleProperties>> StyleComputer::compute_pseudo_element_style_if_needed(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element) const
  1338. {
  1339. return compute_style_impl(element, move(pseudo_element), ComputeStyleMode::CreatePseudoElementStyleIfNeeded);
  1340. }
  1341. ErrorOr<RefPtr<StyleProperties>> StyleComputer::compute_style_impl(DOM::Element& element, Optional<CSS::Selector::PseudoElement> pseudo_element, ComputeStyleMode mode) const
  1342. {
  1343. build_rule_cache_if_needed();
  1344. auto style = StyleProperties::create();
  1345. // 1. Perform the cascade. This produces the "specified style"
  1346. bool did_match_any_pseudo_element_rules = false;
  1347. TRY(compute_cascaded_values(style, element, pseudo_element, did_match_any_pseudo_element_rules, mode));
  1348. if (mode == ComputeStyleMode::CreatePseudoElementStyleIfNeeded && !did_match_any_pseudo_element_rules)
  1349. return nullptr;
  1350. // 2. Compute the font, since that may be needed for font-relative CSS units
  1351. compute_font(style, &element, pseudo_element);
  1352. // 3. Absolutize values, turning font/viewport relative lengths into absolute lengths
  1353. absolutize_values(style, &element, pseudo_element);
  1354. // 4. Default the values, applying inheritance and 'initial' as needed
  1355. compute_defaulted_values(style, &element, pseudo_element);
  1356. // 5. Run automatic box type transformations
  1357. transform_box_type_if_needed(style, element, pseudo_element);
  1358. return style;
  1359. }
  1360. PropertyDependencyNode::PropertyDependencyNode(String name)
  1361. : m_name(move(name))
  1362. {
  1363. }
  1364. void PropertyDependencyNode::add_child(NonnullRefPtr<PropertyDependencyNode> new_child)
  1365. {
  1366. for (auto const& child : m_children) {
  1367. if (child->m_name == new_child->m_name)
  1368. return;
  1369. }
  1370. // We detect self-reference already.
  1371. VERIFY(new_child->m_name != m_name);
  1372. m_children.append(move(new_child));
  1373. }
  1374. bool PropertyDependencyNode::has_cycles()
  1375. {
  1376. if (m_marked)
  1377. return true;
  1378. TemporaryChange change { m_marked, true };
  1379. for (auto& child : m_children) {
  1380. if (child->has_cycles())
  1381. return true;
  1382. }
  1383. return false;
  1384. }
  1385. void StyleComputer::build_rule_cache_if_needed() const
  1386. {
  1387. if (m_author_rule_cache && m_user_agent_rule_cache)
  1388. return;
  1389. const_cast<StyleComputer&>(*this).build_rule_cache();
  1390. }
  1391. NonnullOwnPtr<StyleComputer::RuleCache> StyleComputer::make_rule_cache_for_cascade_origin(CascadeOrigin cascade_origin)
  1392. {
  1393. auto rule_cache = make<RuleCache>();
  1394. size_t num_class_rules = 0;
  1395. size_t num_id_rules = 0;
  1396. size_t num_tag_name_rules = 0;
  1397. size_t num_pseudo_element_rules = 0;
  1398. Vector<MatchingRule> matching_rules;
  1399. size_t style_sheet_index = 0;
  1400. for_each_stylesheet(cascade_origin, [&](auto& sheet) {
  1401. size_t rule_index = 0;
  1402. sheet.for_each_effective_style_rule([&](auto const& rule) {
  1403. size_t selector_index = 0;
  1404. for (CSS::Selector const& selector : rule.selectors()) {
  1405. MatchingRule matching_rule {
  1406. &rule,
  1407. style_sheet_index,
  1408. rule_index,
  1409. selector_index,
  1410. selector.specificity(),
  1411. };
  1412. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  1413. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::PseudoElement) {
  1414. matching_rule.contains_pseudo_element = true;
  1415. ++num_pseudo_element_rules;
  1416. break;
  1417. }
  1418. }
  1419. bool added_to_bucket = false;
  1420. for (auto const& simple_selector : selector.compound_selectors().last().simple_selectors) {
  1421. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Id) {
  1422. rule_cache->rules_by_id.ensure(simple_selector.name()).append(move(matching_rule));
  1423. ++num_id_rules;
  1424. added_to_bucket = true;
  1425. break;
  1426. }
  1427. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::Class) {
  1428. rule_cache->rules_by_class.ensure(simple_selector.name()).append(move(matching_rule));
  1429. ++num_class_rules;
  1430. added_to_bucket = true;
  1431. break;
  1432. }
  1433. if (simple_selector.type == CSS::Selector::SimpleSelector::Type::TagName) {
  1434. rule_cache->rules_by_tag_name.ensure(simple_selector.name()).append(move(matching_rule));
  1435. ++num_tag_name_rules;
  1436. added_to_bucket = true;
  1437. break;
  1438. }
  1439. }
  1440. if (!added_to_bucket)
  1441. rule_cache->other_rules.append(move(matching_rule));
  1442. ++selector_index;
  1443. }
  1444. ++rule_index;
  1445. });
  1446. ++style_sheet_index;
  1447. });
  1448. if constexpr (LIBWEB_CSS_DEBUG) {
  1449. dbgln("Built rule cache!");
  1450. dbgln(" ID: {}", num_id_rules);
  1451. dbgln(" Class: {}", num_class_rules);
  1452. dbgln(" TagName: {}", num_tag_name_rules);
  1453. dbgln("PseudoElement: {}", num_pseudo_element_rules);
  1454. dbgln(" Other: {}", rule_cache->other_rules.size());
  1455. dbgln(" Total: {}", num_class_rules + num_id_rules + num_tag_name_rules + rule_cache->other_rules.size());
  1456. }
  1457. return rule_cache;
  1458. }
  1459. void StyleComputer::build_rule_cache()
  1460. {
  1461. m_author_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::Author);
  1462. m_user_agent_rule_cache = make_rule_cache_for_cascade_origin(CascadeOrigin::UserAgent);
  1463. }
  1464. void StyleComputer::invalidate_rule_cache()
  1465. {
  1466. m_author_rule_cache = nullptr;
  1467. // NOTE: It might not be necessary to throw away the UA rule cache.
  1468. // If we are sure that it's safe, we could keep it as an optimization.
  1469. m_user_agent_rule_cache = nullptr;
  1470. }
  1471. CSSPixelRect StyleComputer::viewport_rect() const
  1472. {
  1473. if (auto const* browsing_context = document().browsing_context())
  1474. return browsing_context->viewport_rect();
  1475. return {};
  1476. }
  1477. void StyleComputer::did_load_font([[maybe_unused]] FlyString const& family_name)
  1478. {
  1479. document().invalidate_style();
  1480. }
  1481. void StyleComputer::load_fonts_from_sheet(CSSStyleSheet const& sheet)
  1482. {
  1483. for (auto const& rule : static_cast<CSSStyleSheet const&>(sheet).rules()) {
  1484. if (!is<CSSFontFaceRule>(*rule))
  1485. continue;
  1486. auto const& font_face = static_cast<CSSFontFaceRule const&>(*rule).font_face();
  1487. if (font_face.sources().is_empty())
  1488. continue;
  1489. if (m_loaded_fonts.contains(font_face.font_family()))
  1490. continue;
  1491. Vector<AK::URL> urls;
  1492. for (auto& source : font_face.sources()) {
  1493. // FIXME: These should be loaded relative to the stylesheet URL instead of the document URL.
  1494. urls.append(m_document->parse_url(source.url.to_deprecated_string()));
  1495. }
  1496. if (urls.is_empty())
  1497. continue;
  1498. auto loader = make<FontLoader>(const_cast<StyleComputer&>(*this), font_face.font_family(), move(urls));
  1499. const_cast<StyleComputer&>(*this).m_loaded_fonts.set(font_face.font_family().to_string(), move(loader));
  1500. }
  1501. }
  1502. }