2020-07-19 23:01:53 -07:00
|
|
|
/*
|
2021-04-22 16:53:07 -07:00
|
|
|
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
|
2020-07-19 23:01:53 -07:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-19 23:01:53 -07:00
|
|
|
*/
|
|
|
|
|
2020-07-23 09:44:42 -07:00
|
|
|
#include <LibWeb/SVG/SVGElement.h>
|
2020-07-19 23:01:53 -07:00
|
|
|
|
2020-07-23 09:44:42 -07:00
|
|
|
namespace Web::SVG {
|
2020-07-19 23:01:53 -07:00
|
|
|
|
2021-02-07 11:20:15 +01:00
|
|
|
SVGElement::SVGElement(DOM::Document& document, QualifiedName qualified_name)
|
|
|
|
: Element(document, move(qualified_name))
|
2021-09-26 15:24:41 +01:00
|
|
|
, m_dataset(HTML::DOMStringMap::create(*this))
|
2020-07-23 09:44:42 -07:00
|
|
|
{
|
|
|
|
}
|
2020-07-19 23:01:53 -07:00
|
|
|
|
|
|
|
}
|