/* * 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 { AK_MAKE_NONCOPYABLE(CSSFontFaceRule); AK_MAKE_NONMOVABLE(CSSFontFaceRule); JS_OBJECT(CSSFontFaceRule, CSSRule); public: static CSSFontFaceRule* create(Bindings::WindowObject&, FontFace&&); explicit CSSFontFaceRule(Bindings::WindowObject&, FontFace&&); virtual ~CSSFontFaceRule() override = default; CSSFontFaceRule& impl() { return *this; } virtual Type type() const override { return Type::FontFace; } FontFace const& font_face() const { return m_font_face; } CSSStyleDeclaration* style(); private: virtual String serialized() const override; FontFace m_font_face; }; template<> inline bool CSSRule::fast_is() const { return type() == CSSRule::Type::FontFace; } } namespace Web::Bindings { inline JS::Object* wrap(JS::Realm&, Web::CSS::CSSFontFaceRule& object) { return &object; } using CSSFontFaceRuleWrapper = Web::CSS::CSSFontFaceRule; }