mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
18 lines
370 B
C
18 lines
370 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <LibHTML/DOM/HTMLElement.h>
|
||
|
|
||
|
class StyleSheet;
|
||
|
|
||
|
class HTMLStyleElement : public HTMLElement {
|
||
|
public:
|
||
|
HTMLStyleElement(Document&, const String& tag_name);
|
||
|
virtual ~HTMLStyleElement() override;
|
||
|
|
||
|
virtual void inserted_into(Node&) override;
|
||
|
virtual void removed_from(Node&) override;
|
||
|
|
||
|
private:
|
||
|
RefPtr<StyleSheet> m_stylesheet;
|
||
|
};
|