LibWeb/SVG: SVGScriptElement includes SVGURIReference

This commit is contained in:
Jamie Mansfield 2024-07-16 13:49:28 +01:00 committed by Andreas Kling
parent 796de74956
commit fbb5bc471d
Notes: sideshowbarker 2024-07-17 07:14:09 +09:00
3 changed files with 7 additions and 2 deletions

View file

@ -28,6 +28,7 @@ void SVGScriptElement::initialize(JS::Realm& realm)
void SVGScriptElement::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
SVGURIReferenceMixin::visit_edges(visitor);
visitor.visit(m_script);
}