HTMLElement.h 316 B

1234567891011121314
  1. #pragma once
  2. #include <LibHTML/DOM/Element.h>
  3. class HTMLElement : public Element {
  4. public:
  5. HTMLElement(Document&, const String& tag_name);
  6. virtual ~HTMLElement() override;
  7. String title() const { return attribute("title"); }
  8. private:
  9. virtual bool is_html_element() const final { return true; }
  10. };