1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 17:55:09 +00:00

LibHTML: Add HTMLHeadingElement for <h1> through <h6>

This commit is contained in:
Andreas Kling 2019-09-29 12:24:58 +02:00
parent f38b0f667e
commit 5b942b519c
4 changed files with 31 additions and 1 deletions

View 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;
};