diff --git a/Userland/Libraries/LibWeb/Animations/Animatable.cpp b/Userland/Libraries/LibWeb/Animations/Animatable.cpp index ab48f2c7dc7..9ab44faa9d4 100644 --- a/Userland/Libraries/LibWeb/Animations/Animatable.cpp +++ b/Userland/Libraries/LibWeb/Animations/Animatable.cpp @@ -150,6 +150,7 @@ void Animatable::remove_transition(CSS::PropertyID property_id) void Animatable::clear_transitions() { + m_associated_transitions.clear(); m_transition_attribute_indices.clear(); m_transition_attributes.clear(); }