StyleComputer.cpp 69 KB

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