StyleComputer.cpp 72 KB

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