summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLStyleElement.h
diff options
context:
space:
mode:
authorLuke Wilde <lukew@serenityos.org>2021-10-01 00:13:56 +0100
committerLinus Groh <mail@linusgroh.de>2021-10-01 00:17:24 +0100
commit10d4f2fc1eadf7beaf5caee66312d38e9a29599c (patch)
tree68ccc6f1950c2d65e0beb32f6cccb4994b897802 /Userland/Libraries/LibWeb/HTML/HTMLStyleElement.h
parent2c6c9b73c88bd2feea66df8766212c2e586ea9aa (diff)
downloadserenity-10d4f2fc1eadf7beaf5caee66312d38e9a29599c.zip
LibWeb: Implement HTMLStyleElement.sheet
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLStyleElement.h')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLStyleElement.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLStyleElement.h b/Userland/Libraries/LibWeb/HTML/HTMLStyleElement.h
index 9643e33ad3..a96393093d 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLStyleElement.h
+++ b/Userland/Libraries/LibWeb/HTML/HTMLStyleElement.h
@@ -23,6 +23,8 @@ public:
void update_a_style_block();
+ RefPtr<CSS::CSSStyleSheet> sheet() const;
+
private:
// https://drafts.csswg.org/cssom/#associated-css-style-sheet
RefPtr<CSS::CSSStyleSheet> m_associated_css_style_sheet;