HTMLBodyElement.h 357 B

123456789101112
  1. #pragma once
  2. #include <LibHTML/DOM/HTMLElement.h>
  3. class HTMLBodyElement : public HTMLElement {
  4. public:
  5. HTMLBodyElement(Document&, const String& tag_name);
  6. virtual ~HTMLBodyElement() override;
  7. virtual void parse_attribute(const String&, const String&) override;
  8. virtual void apply_presentational_hints(StyleProperties&) const override;
  9. };