mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:07:36 +00:00
LibWeb: Add missing implementation of method in AnimationTimeline
This commit is contained in:
parent
df4be9a479
commit
c732e03ea0
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public:
|
||||||
|
|
||||||
void associate_with_animation(JS::NonnullGCPtr<Animation> value) { m_associated_animations.set(value); }
|
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); }
|
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:
|
protected:
|
||||||
AnimationTimeline(JS::Realm&);
|
AnimationTimeline(JS::Realm&);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue