blob: 05f28babeace5f4e23a531423f153e56e8832ce5 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
class HTMLHRElement : public HTMLElement {
public:
HTMLHRElement(Document&, const String& tag_name);
virtual ~HTMLHRElement() override;
};
|