mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:37:35 +00:00
LibWeb: Add missing visits for Document's pending animation event queue
This commit is contained in:
parent
4e27d07ff2
commit
fc62989f1a
1 changed files with 5 additions and 0 deletions
|
@ -478,6 +478,11 @@ void Document::visit_edges(Cell::Visitor& visitor)
|
|||
|
||||
for (auto& element : m_potentially_named_elements)
|
||||
visitor.visit(element);
|
||||
|
||||
for (auto& event : m_pending_animation_event_queue) {
|
||||
visitor.visit(event.event);
|
||||
visitor.visit(event.target);
|
||||
}
|
||||
}
|
||||
|
||||
// https://w3c.github.io/selection-api/#dom-document-getselection
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue