/* * Copyright (c) 2022, Sam Atkins * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::CSS { class CSSFontFaceRule final : public CSSRule { WEB_PLATFORM_OBJECT(CSSFontFaceRule, CSSRule); GC_DECLARE_ALLOCATOR(CSSFontFaceRule); public: [[nodiscard]] static GC::Ref create(JS::Realm&, ParsedFontFace&&); virtual ~CSSFontFaceRule() override = default; ParsedFontFace const& font_face() const { return m_font_face; } CSSStyleDeclaration* style(); private: CSSFontFaceRule(JS::Realm&, ParsedFontFace&&); virtual void initialize(JS::Realm&) override; virtual String serialized() const override; ParsedFontFace m_font_face; }; template<> inline bool CSSRule::fast_is() const { return type() == CSSRule::Type::FontFace; } }