/* * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::SVG { class SVGClipPathElement final : public SVGElement { public: using WrapperType = Bindings::SVGClipPathElementWrapper; SVGClipPathElement(DOM::Document&, DOM::QualifiedName); virtual ~SVGClipPathElement(); virtual RefPtr create_layout_node(NonnullRefPtr) override; }; }