LibWeb: Parse the animation-timeline CSS property

This commit is contained in:
Callum Law 2025-11-22 13:33:10 +13:00 committed by Sam Atkins
parent d79aba68d2
commit 5bbcd0a48f
Notes: github-actions[bot] 2025-11-28 13:25:39 +00:00
14 changed files with 532 additions and 13 deletions

View file

@ -229,7 +229,7 @@ String ShorthandStyleValue::to_string(SerializationMode mode) const
return ""_string;
}
case PropertyID::Animation:
return coordinating_value_list_shorthand_to_string("none"sv);
return coordinating_value_list_shorthand_to_string("none"sv, {}, { PropertyID::AnimationTimeline });
case PropertyID::Background: {
auto color = longhand(PropertyID::BackgroundColor);
auto image = longhand(PropertyID::BackgroundImage);