#include
#include
HTMLBRElement::HTMLBRElement(Document& document, const String& tag_name)
: HTMLElement(document, tag_name)
{
}
HTMLBRElement::~HTMLBRElement()
{
}
RefPtr HTMLBRElement::create_layout_node(const StyleProperties*) const
{
return adopt(*new LayoutBreak(*this));
}