LibWeb: Add DocumentOrShadowRoot::get_animations()

This commit is contained in:
Matthew Olsson 2024-06-02 07:26:36 -07:00 committed by Andreas Kling
commit 5b84bd6e45
Notes: sideshowbarker 2024-07-17 07:48:42 +09:00
5 changed files with 27 additions and 0 deletions

View file

@ -47,6 +47,8 @@ public:
void for_each_css_style_sheet(Function<void(CSS::CSSStyleSheet&)>&& callback) const;
Vector<JS::NonnullGCPtr<Animations::Animation>> get_animations();
virtual void finalize() override;
protected: