mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 20:54:57 +00:00

You can now query Document::title() to get a String containing whatever is inside the document's <title> tag. In support of this, this patch adds the <html>, <head> and <title> elements.
10 lines
202 B
C++
10 lines
202 B
C++
#include <LibHTML/DOM/HTMLHeadElement.h>
|
|
|
|
HTMLHeadElement::HTMLHeadElement(Document& document, const String& tag_name)
|
|
: HTMLElement(document, tag_name)
|
|
{
|
|
}
|
|
|
|
HTMLHeadElement::~HTMLHeadElement()
|
|
{
|
|
}
|