2019-10-04 16:05:52 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibHTML/DOM/HTMLElement.h>
|
|
|
|
|
|
|
|
|
|
class HTMLBodyElement : public HTMLElement {
|
|
|
|
|
public:
|
|
|
|
|
HTMLBodyElement(Document&, const String& tag_name);
|
|
|
|
|
virtual ~HTMLBodyElement() override;
|
|
|
|
|
|
2019-10-06 05:11:54 -03:00
|
|
|
virtual void parse_attribute(const String&, const String&) override;
|
2019-10-04 16:05:52 -03:00
|
|
|
virtual void apply_presentational_hints(StyleProperties&) const override;
|
|
|
|
|
};
|