StyleComputer.cpp 77 KB

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