2021-09-18 00:04:19 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/SVG/SVGGraphicsElement.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::SVG {
|
|
|
|
|
|
|
|
|
|
class SVGGElement final : public SVGGraphicsElement {
|
|
|
|
|
public:
|
|
|
|
|
using WrapperType = Bindings::SVGPathElementWrapper;
|
|
|
|
|
|
2022-02-18 21:00:52 +01:00
|
|
|
SVGGElement(DOM::Document&, DOM::QualifiedName);
|
2021-09-18 00:04:19 +02:00
|
|
|
virtual ~SVGGElement() override = default;
|
|
|
|
|
|
2022-02-05 13:17:01 +01:00
|
|
|
virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
2021-09-18 00:04:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|