mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 09:18:52 +00:00
16 lines
303 B
C++
16 lines
303 B
C++
/*
|
|
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/SVG/SVGElement.h>
|
|
|
|
namespace Web::SVG {
|
|
|
|
SVGElement::SVGElement(DOM::Document& document, QualifiedName qualified_name)
|
|
: Element(document, move(qualified_name))
|
|
{
|
|
}
|
|
|
|
}
|