mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 11:12:54 +00:00
23 lines
509 B
C++
23 lines
509 B
C++
/*
|
|
* Copyright (c) 2022, Simon Danner <danner.simon@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/SVG/SVGGraphicsElement.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
class SVGDefsElement final : public SVGGraphicsElement {
|
|
public:
|
|
using WrapperType = Bindings::SVGDefsElementWrapper;
|
|
|
|
SVGDefsElement(DOM::Document&, DOM::QualifiedName);
|
|
virtual ~SVGDefsElement();
|
|
|
|
virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
|
};
|
|
|
|
}
|