HTMLBodyElement.h 284 B

1234567891011
  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 apply_presentational_hints(StyleProperties&) const override;
  8. };