ladybird/Libraries/LibHTML/DOM/HTMLHRElement.cpp
Andreas Kling 8f842375a2 LibHTML: Implement the <hr> element
This also meant I had to implement basic support for the border-styles
"inset" and "outset". If it's neither of those, we default to "solid".
2019-10-01 20:50:11 +02:00

10 lines
192 B
C++

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