2019-09-29 11:24:57 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibHTML/DOM/HTMLElement.h>
|
|
|
|
|
|
|
|
|
|
class HTMLHtmlElement : public HTMLElement {
|
|
|
|
|
public:
|
|
|
|
|
HTMLHtmlElement(Document&, const String& tag_name);
|
|
|
|
|
virtual ~HTMLHtmlElement() override;
|
|
|
|
|
};
|
2019-10-06 15:37:39 -03:00
|
|
|
|
|
|
|
|
template<>
|
|
|
|
|
inline bool is<HTMLHtmlElement>(const Node& node)
|
|
|
|
|
{
|
|
|
|
|
return is<Element>(node) && to<Element>(node).tag_name().to_lowercase() == "html";
|
|
|
|
|
}
|