mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 03:37:53 +00:00
LibHTML: Add HTMLHeadingElement for <h1> through <h6>
This commit is contained in:
9
Libraries/LibHTML/DOM/HTMLHeadingElement.h
Normal file
9
Libraries/LibHTML/DOM/HTMLHeadingElement.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#include <LibHTML/DOM/HTMLElement.h>
|
||||
|
||||
class HTMLHeadingElement : public HTMLElement {
|
||||
public:
|
||||
HTMLHeadingElement(Document&, const String& tag_name);
|
||||
virtual ~HTMLHeadingElement() override;
|
||||
};
|
||||
Reference in New Issue
Block a user