2023-05-26 23:30:54 +03:30
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
#include <LibWeb/CSS/CSSRule.h>
|
|
|
|
#include <LibWeb/CSS/CSSStyleDeclaration.h>
|
|
|
|
#include <LibWeb/CSS/Percentage.h>
|
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
// https://drafts.csswg.org/css-animations/#interface-csskeyframerule
|
|
|
|
class CSSKeyframeRule final : public CSSRule {
|
|
|
|
WEB_PLATFORM_OBJECT(CSSKeyframeRule, CSSRule);
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_DECLARE_ALLOCATOR(CSSKeyframeRule);
|
2023-05-26 23:30:54 +03:30
|
|
|
|
|
|
|
public:
|
2024-06-14 16:38:23 +02:00
|
|
|
static JS::NonnullGCPtr<CSSKeyframeRule> create(JS::Realm&, CSS::Percentage key, PropertyOwningCSSStyleDeclaration&);
|
2023-05-26 23:30:54 +03:30
|
|
|
|
|
|
|
virtual ~CSSKeyframeRule() = default;
|
|
|
|
|
|
|
|
CSS::Percentage key() const { return m_key; }
|
|
|
|
JS::NonnullGCPtr<CSSStyleDeclaration> style() const { return m_declarations; }
|
2024-06-14 17:04:56 +02:00
|
|
|
JS::NonnullGCPtr<PropertyOwningCSSStyleDeclaration> style_as_property_owning_style_declaration() const { return m_declarations; }
|
2023-05-26 23:30:54 +03:30
|
|
|
|
2023-08-27 19:03:48 +12:00
|
|
|
String key_text() const
|
2023-06-20 16:19:40 +01:00
|
|
|
{
|
2023-08-27 19:03:48 +12:00
|
|
|
return m_key.to_string();
|
2023-06-20 16:19:40 +01:00
|
|
|
}
|
|
|
|
|
2023-08-27 19:03:48 +12:00
|
|
|
void set_key_text(String const& key_text)
|
2023-06-20 16:19:40 +01:00
|
|
|
{
|
|
|
|
dbgln("FIXME: CSSKeyframeRule::set_key_text is not implemented: {}", key_text);
|
|
|
|
}
|
|
|
|
|
2023-05-26 23:30:54 +03:30
|
|
|
private:
|
2024-06-14 16:38:23 +02:00
|
|
|
CSSKeyframeRule(JS::Realm&, CSS::Percentage, PropertyOwningCSSStyleDeclaration&);
|
2023-05-26 23:30:54 +03:30
|
|
|
|
|
|
|
virtual void visit_edges(Visitor&) override;
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-11-20 23:16:39 +13:00
|
|
|
virtual String serialized() const override;
|
2023-05-26 23:30:54 +03:30
|
|
|
|
|
|
|
CSS::Percentage m_key;
|
2024-06-14 16:38:23 +02:00
|
|
|
JS::NonnullGCPtr<PropertyOwningCSSStyleDeclaration> m_declarations;
|
2023-05-26 23:30:54 +03:30
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
inline bool CSSRule::fast_is<CSSKeyframeRule>() const { return type() == CSSRule::Type::Keyframe; }
|
|
|
|
|
|
|
|
}
|