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