mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 08:55:08 +00:00
12 lines
169 B
C++
12 lines
169 B
C++
#include <LibHTML/Element.h>
|
|
|
|
Element::Element(const String& tag_name)
|
|
: ParentNode(NodeType::ELEMENT_NODE)
|
|
, m_tag_name(tag_name)
|
|
{
|
|
}
|
|
|
|
Element::~Element()
|
|
{
|
|
}
|
|
|