mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:07:44 +00:00
LibWeb: Add missing visit Document::m_intersection_observers
This commit is contained in:
parent
078489d9ee
commit
76d42aa2d5
1 changed files with 3 additions and 0 deletions
|
@ -391,6 +391,9 @@ void Document::visit_edges(Cell::Visitor& visitor)
|
|||
visitor.visit(target);
|
||||
for (auto& target : m_pending_scrollend_event_targets)
|
||||
visitor.visit(target);
|
||||
|
||||
for (auto& observer : m_intersection_observers)
|
||||
visitor.visit(observer);
|
||||
}
|
||||
|
||||
// https://w3c.github.io/selection-api/#dom-document-getselection
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue