LibWeb: Parse the scroll-timeline-axis CSS property

This commit is contained in:
Callum Law 2025-11-20 23:04:29 +13:00 committed by Sam Atkins
parent e95f326f3d
commit 992b0a4dc6
Notes: github-actions[bot] 2025-11-28 13:26:31 +00:00
11 changed files with 135 additions and 0 deletions

View file

@ -745,6 +745,7 @@ Parser::ParseErrorOr<NonnullRefPtr<StyleValue const>> Parser::parse_css_value(Pr
return parse_all_as(tokens, [this](auto& tokens) { return parse_translate_value(tokens); });
case PropertyID::Scale:
return parse_all_as(tokens, [this](auto& tokens) { return parse_scale_value(tokens); });
case PropertyID::ScrollTimelineAxis:
case PropertyID::ScrollTimelineName:
return parse_all_as(tokens, [this, property_id](auto& tokens) { return parse_simple_comma_separated_value_list(property_id, tokens); });
case PropertyID::WhiteSpace: