mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 13:19:47 +00:00
13 lines
169 B
C++
13 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()
|
|
{
|
|
}
|
|
|