LibHTML: Implement the <hr> element

This also meant I had to implement basic support for the border-styles
"inset" and "outset". If it's neither of those, we default to "solid".
This commit is contained in:
Andreas Kling 2019-10-01 20:50:11 +02:00
commit 8f842375a2
Notes: sideshowbarker 2024-07-19 11:51:40 +09:00
6 changed files with 54 additions and 4 deletions

View file

@ -0,0 +1,9 @@
#pragma once
#include <LibHTML/DOM/HTMLElement.h>
class HTMLHRElement : public HTMLElement {
public:
HTMLHRElement(Document&, const String& tag_name);
virtual ~HTMLHRElement() override;
};