mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
26 lines
591 B
C++
26 lines
591 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2025, Jelle Raaijmakers <jelle@ladybird.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <LibWeb/Bindings/SVGFEFuncAElementPrototype.h>
|
||
|
|
#include <LibWeb/SVG/SVGFEFuncAElement.h>
|
||
|
|
|
||
|
|
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);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|