/* * Copyright (c) 2025, Jelle Raaijmakers * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web::SVG { GC_DEFINE_ALLOCATOR(SVGFEFuncAElement); SVGFEFuncAElement::SVGFEFuncAElement(DOM::Document& document, DOM::QualifiedName qualified_name) : SVGComponentTransferFunctionElement(document, qualified_name) { } void SVGFEFuncAElement::initialize(JS::Realm& realm) { WEB_SET_PROTOTYPE_FOR_INTERFACE(SVGFEFuncAElement); Base::initialize(realm); } }