mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-04 23:30:59 +00:00
11 lines
202 B
C++
11 lines
202 B
C++
|
|
#include <LibHTML/DOM/HTMLHeadElement.h>
|
||
|
|
|
||
|
|
HTMLHeadElement::HTMLHeadElement(Document& document, const String& tag_name)
|
||
|
|
: HTMLElement(document, tag_name)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
HTMLHeadElement::~HTMLHeadElement()
|
||
|
|
{
|
||
|
|
}
|