StyleComputer.cpp 57 KB

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