mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-18 17:12:54 +00:00
Now that StyleProperties is only used to hold computed properties, let's name it ComputedProperties.
25 lines
545 B
C++
25 lines
545 B
C++
/*
|
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/SVG/SVGElement.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
class SVGDescElement final : public SVGElement {
|
|
WEB_PLATFORM_OBJECT(SVGDescElement, SVGElement);
|
|
GC_DECLARE_ALLOCATOR(SVGDescElement);
|
|
|
|
private:
|
|
SVGDescElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
virtual GC::Ptr<Layout::Node> create_layout_node(CSS::ComputedProperties) override;
|
|
};
|
|
|
|
}
|