LibWeb/SVG: SVGGradientElement includes SVGURIReference

This commit is contained in:
Jamie Mansfield 2024-07-16 13:59:10 +01:00 committed by Andreas Kling
commit c8e6a95988
Notes: sideshowbarker 2024-07-17 07:14:07 +09:00
3 changed files with 13 additions and 2 deletions

View file

@ -140,4 +140,10 @@ void SVGGradientElement::initialize(JS::Realm& realm)
WEB_SET_PROTOTYPE_FOR_INTERFACE(SVGGradientElement);
}
void SVGGradientElement::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
SVGURIReferenceMixin::visit_edges(visitor);
}
}