LibWeb/CSS: Parse and propagate the font-language-override property

This commit is contained in:
Sam Atkins 2024-09-27 17:11:05 +01:00 committed by Andreas Kling
commit 1d8867d9ae
Notes: github-actions[bot] 2024-09-28 12:43:26 +00:00
8 changed files with 78 additions and 2 deletions

View file

@ -305,6 +305,7 @@ private:
RefPtr<CSSStyleValue> parse_flex_flow_value(TokenStream<ComponentValue>&);
RefPtr<CSSStyleValue> parse_font_value(TokenStream<ComponentValue>&);
RefPtr<CSSStyleValue> parse_font_family_value(TokenStream<ComponentValue>&);
RefPtr<CSSStyleValue> parse_font_language_override_value(TokenStream<ComponentValue>&);
RefPtr<CSSStyleValue> parse_list_style_value(TokenStream<ComponentValue>&);
RefPtr<CSSStyleValue> parse_math_depth_value(TokenStream<ComponentValue>&);
RefPtr<CSSStyleValue> parse_overflow_value(TokenStream<ComponentValue>&);