1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:47:35 +00:00

LibWeb: Invalidate element when setting AnimationEffect's animation

This commit is contained in:
Matthew Olsson 2024-02-10 21:11:51 -07:00 committed by Andrew Kaster
parent ce99636cd0
commit 6d25bf3aac
2 changed files with 9 additions and 1 deletions

View file

@ -95,7 +95,7 @@ public:
void set_timing_function(TimingFunction value) { m_timing_function = move(value); }
JS::GCPtr<Animation> associated_animation() const { return m_associated_animation; }
void set_associated_animation(JS::GCPtr<Animation> value) { m_associated_animation = value; }
void set_associated_animation(JS::GCPtr<Animation> value);
AnimationDirection animation_direction() const;