/* * Copyright (c) 2025, Miguel Sacristán Izcue * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include namespace Web::SVG { GC_DEFINE_ALLOCATOR(SVGAnimationElement); SVGAnimationElement::SVGAnimationElement(DOM::Document& document, DOM::QualifiedName name) : SVGElement(document, name) { } void SVGAnimationElement::initialize(JS::Realm& realm) { WEB_SET_PROTOTYPE_FOR_INTERFACE(SVGAnimationElement); Base::initialize(realm); } }