summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/DOM/HTMLTitleElement.h
blob: 4b0edf803a4d0589ff431d260b64637c9ed5b63a (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <LibHTML/DOM/HTMLElement.h>

class HTMLTitleElement : public HTMLElement {
public:
    HTMLTitleElement(Document&, const String& tag_name);
    virtual ~HTMLTitleElement() override;
};