1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

LibWeb: Add missing implementation of method in AnimationTimeline

This commit is contained in:
Matthew Olsson 2024-02-04 19:22:49 -07:00 committed by Andreas Kling
parent df4be9a479
commit c732e03ea0

View file

@ -31,7 +31,7 @@ public:
void associate_with_animation(JS::NonnullGCPtr<Animation> value) { m_associated_animations.set(value); }
void disassociate_with_animation(JS::NonnullGCPtr<Animation> value) { m_associated_animations.remove(value); }
HashTable<JS::NonnullGCPtr<Animation>> const& associated_animations() const;
HashTable<JS::NonnullGCPtr<Animation>> const& associated_animations() const { return m_associated_animations; }
protected:
AnimationTimeline(JS::Realm&);