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