mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 18:35:06 +00:00

This file was being included everywhere via HTMLElement and SVGElement, but we don't actually need to do that.
30 lines
674 B
C++
30 lines
674 B
C++
/*
|
|
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/Element.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
class SVGElement : public DOM::Element {
|
|
WEB_PLATFORM_OBJECT(SVGElement, DOM::Element);
|
|
|
|
public:
|
|
virtual bool requires_svg_container() const override { return true; }
|
|
|
|
HTML::DOMStringMap* dataset() { return m_dataset.ptr(); }
|
|
HTML::DOMStringMap const* dataset() const { return m_dataset.ptr(); }
|
|
|
|
protected:
|
|
SVGElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
JS::NonnullGCPtr<HTML::DOMStringMap> m_dataset;
|
|
};
|
|
|
|
}
|