/* * Copyright (c) 2025, Jelle Raaijmakers * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::SVG { // https://www.w3.org/TR/filter-effects-1/#InterfaceSVGFEFuncBElement class SVGFEFuncBElement final : public SVGComponentTransferFunctionElement { WEB_PLATFORM_OBJECT(SVGFEFuncBElement, SVGComponentTransferFunctionElement); GC_DECLARE_ALLOCATOR(SVGFEFuncBElement); public: virtual ~SVGFEFuncBElement() override = default; private: SVGFEFuncBElement(DOM::Document&, DOM::QualifiedName); virtual void initialize(JS::Realm&) override; }; }