mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
LibWeb: Cancel previous animation if new animation-name is "none"
"none" value should be interpreted as "no animation" to trigger the path that cancels previous animation if it exists.
This commit is contained in:
parent
985434ea10
commit
4b4d960cba
Notes:
github-actions[bot]
2025-06-01 03:03:12 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: 4b4d960cba
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4896
3 changed files with 42 additions and 0 deletions
|
@ -2678,6 +2678,8 @@ GC::Ref<ComputedProperties> StyleComputer::compute_properties(DOM::Element& elem
|
|||
auto const animation_name = computed_style->maybe_null_property(PropertyID::AnimationName);
|
||||
if (!animation_name)
|
||||
return OptionalNone {};
|
||||
if (animation_name->is_keyword() && animation_name->to_keyword() == Keyword::None)
|
||||
return OptionalNone {};
|
||||
if (animation_name->is_string())
|
||||
return animation_name->as_string().string_value().to_string();
|
||||
return animation_name->to_string(SerializationMode::Normal);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue