10 lines
217 B
C++
10 lines
217 B
C++
#include <LibHTML/DOM/HTMLHeadingElement.h>
|
|
|
|
HTMLHeadingElement::HTMLHeadingElement(Document& document, const String& tag_name)
|
|
: HTMLElement(document, tag_name)
|
|
{
|
|
}
|
|
|
|
HTMLHeadingElement::~HTMLHeadingElement()
|
|
{
|
|
}
|