HTMLHtmlElement.cpp 202 B

12345678910
  1. #include <LibHTML/DOM/HTMLHtmlElement.h>
  2. HTMLHtmlElement::HTMLHtmlElement(Document& document, const String& tag_name)
  3. : HTMLElement(document, tag_name)
  4. {
  5. }
  6. HTMLHtmlElement::~HTMLHtmlElement()
  7. {
  8. }