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

LibWeb: Implement Animatable::get_animations()

This commit is contained in:
Matthew Olsson 2024-02-03 12:17:29 -07:00 committed by Andreas Kling
parent 145ae54718
commit 3ea26327c7
2 changed files with 26 additions and 2 deletions

View file

@ -35,6 +35,7 @@ public:
private:
Vector<JS::NonnullGCPtr<AnimationEffect>> m_associated_effects;
bool m_is_sorted_by_composite_order { true };
};
}