ladybird/Libraries/LibHTML/DOM/HTMLElement.cpp

11 lines
178 B
C++
Raw Normal View History

#include <LibHTML/DOM/HTMLElement.h>
HTMLElement::HTMLElement(Document& document, const String& tag_name)
: Element(document, tag_name)
{
}
HTMLElement::~HTMLElement()
{
}