mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-18 09:02:53 +00:00
This removes a set of complex reference cycles between DOM, layout tree and browsing context. It also makes lifetimes much easier to reason about, as the DOM and layout trees are now free to keep each other alive.
25 lines
526 B
C++
25 lines
526 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 {
|
|
WEB_PLATFORM_OBJECT(SVGDefsElement, SVGGraphicsElement);
|
|
|
|
public:
|
|
virtual ~SVGDefsElement();
|
|
|
|
virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
|
|
|
private:
|
|
SVGDefsElement(DOM::Document&, DOM::QualifiedName);
|
|
};
|
|
|
|
}
|