LibWeb/DOM: Visit the animation of Document's pending animations

This commit is contained in:
Lucas CHOLLET 2024-12-27 13:36:13 -05:00 committed by Tim Flynn
parent ffda698d3a
commit 589538ec8f
Notes: github-actions[bot] 2024-12-27 19:51:05 +00:00

View file

@ -525,6 +525,7 @@ void Document::visit_edges(Cell::Visitor& visitor)
for (auto& event : m_pending_animation_event_queue) {
visitor.visit(event.event);
visitor.visit(event.animation);
visitor.visit(event.target);
}