1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:07:35 +00:00

LibWeb: Visit Document::m_visual_viewport

Another day, another missing visit_edges() :^(
This commit is contained in:
Andreas Kling 2023-09-16 13:16:34 +02:00
parent e74031a396
commit 35ff38aaea

View file

@ -381,6 +381,7 @@ void Document::visit_edges(Cell::Visitor& visitor)
visitor.visit(m_first_base_element_with_href_in_tree_order);
visitor.visit(m_parser);
visitor.visit(m_lazy_load_intersection_observer);
visitor.visit(m_visual_viewport);
for (auto& script : m_scripts_to_execute_when_parsing_has_finished)
visitor.visit(script);