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

LibWeb: Add missing visit Node::m_pseudo_element_generator

This commit is contained in:
Aliaksandr Kalenik 2023-09-16 23:30:15 +02:00 committed by Andrew Kaster
parent 76d42aa2d5
commit 65eb0f32ad

View file

@ -51,6 +51,7 @@ void Node::visit_edges(Cell::Visitor& visitor)
Base::visit_edges(visitor);
visitor.visit(m_dom_node);
visitor.visit(m_paintable);
visitor.visit(m_pseudo_element_generator);
visitor.visit(m_browsing_context);
TreeNode::visit_edges(visitor);
}