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