LibWeb/SVG: Make SVGClipPathElement inherit from SVGGraphicsElement

This commit is contained in:
Gingeh 2025-01-08 14:44:00 +11:00 committed by Alexander Kalenik
commit 3f8d4c2c92
Notes: github-actions[bot] 2025-02-01 12:40:00 +00:00
2 changed files with 4 additions and 4 deletions

View file

@ -14,7 +14,7 @@ namespace Web::SVG {
GC_DEFINE_ALLOCATOR(SVGClipPathElement);
SVGClipPathElement::SVGClipPathElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGElement(document, move(qualified_name))
: SVGGraphicsElement(document, move(qualified_name))
{
}