summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/CSSRule.h
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2022-09-24 16:34:04 -0600
committerLinus Groh <mail@linusgroh.de>2022-10-01 21:05:32 +0100
commita2ccb00e1da76b9b80fe1a804b5cbf87af91770f (patch)
tree480db40c05e54388c283b3166f4b8786a22c8a25 /Userland/Libraries/LibWeb/CSS/CSSRule.h
parent8de7e49a5648cdf084689a6b6cb49715f8ccad02 (diff)
downloadserenity-a2ccb00e1da76b9b80fe1a804b5cbf87af91770f.zip
LibWeb: Remove unecessary dependence on Window from CSS classes
These classes only needed Window to get at its realm. Pass a realm directly to construct CSS classes.
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/CSSRule.h')
-rw-r--r--Userland/Libraries/LibWeb/CSS/CSSRule.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/CSSRule.h b/Userland/Libraries/LibWeb/CSS/CSSRule.h
index 8a3d6649b1..d095831e25 100644
--- a/Userland/Libraries/LibWeb/CSS/CSSRule.h
+++ b/Userland/Libraries/LibWeb/CSS/CSSRule.h
@@ -16,7 +16,7 @@
namespace Web::CSS {
class CSSRule : public Bindings::PlatformObject {
- WEB_PLATFORM_OBJECT(CSSRule, JS::Object);
+ WEB_PLATFORM_OBJECT(CSSRule, Bindings::PlatformObject);
public:
virtual ~CSSRule() = default;
@@ -45,7 +45,7 @@ public:
bool fast_is() const = delete;
protected:
- explicit CSSRule(HTML::Window&);
+ explicit CSSRule(JS::Realm&);
virtual String serialized() const = 0;