/* * Copyright (c) 2021, the SerenityOS developers. * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include namespace Web::CSS { class CSSRule : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(CSSRule, Bindings::PlatformObject); public: virtual ~CSSRule() = default; // https://drafts.csswg.org/cssom/#dom-cssrule-type enum class Type : u16 { Style = 1, Import = 3, Media = 4, FontFace = 5, Keyframes = 7, Keyframe = 8, Namespace = 10, Supports = 12, }; virtual Type type() const = 0; String css_text() const; void set_css_text(StringView); CSSRule* parent_rule() { return m_parent_rule.ptr(); } void set_parent_rule(CSSRule*); CSSStyleSheet* parent_style_sheet() { return m_parent_style_sheet.ptr(); } virtual void set_parent_style_sheet(CSSStyleSheet*); template bool fast_is() const = delete; protected: explicit CSSRule(JS::Realm&); virtual String serialized() const = 0; virtual void visit_edges(Cell::Visitor&) override; JS::GCPtr m_parent_rule; JS::GCPtr m_parent_style_sheet; }; }