
This partially implements CSS-Animations-1 (though there are references to CSS-Animations-2). Current limitations: - Multi-selector keyframes are not supported. - Most animation properties are ignored. - Timing functions are not applied. - Non-absolute values are not interpolated unless the target is also of the same non-absolute type (e.g. 10% -> 25%, but not 10% -> 20px). - The JavaScript interface is left as an exercise for the next poor soul looking at this code. With those said, this commit implements: - Interpolation for most common types - Proper keyframe resolution (including the synthetic from-keyframe containing the initial state) - Properly driven animations, and proper style invalidation Co-Authored-By: Andreas Kling <kling@serenityos.org>
69 lines
2 KiB
C++
69 lines
2 KiB
C++
/*
|
|
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/CSSGroupingRulePrototype.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/MainThreadVM.h>
|
|
#include <LibWeb/CSS/CSSGroupingRule.h>
|
|
#include <LibWeb/CSS/CSSRuleList.h>
|
|
#include <LibWeb/HTML/Window.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
CSSGroupingRule::CSSGroupingRule(JS::Realm& realm, CSSRuleList& rules)
|
|
: CSSRule(realm)
|
|
, m_rules(rules)
|
|
{
|
|
for (auto& rule : *m_rules)
|
|
rule->set_parent_rule(this);
|
|
}
|
|
|
|
JS::ThrowCompletionOr<void> CSSGroupingRule::initialize(JS::Realm& realm)
|
|
{
|
|
MUST_OR_THROW_OOM(Base::initialize(realm));
|
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::CSSGroupingRulePrototype>(realm, "CSSGroupingRule"));
|
|
|
|
return {};
|
|
}
|
|
|
|
void CSSGroupingRule::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_rules);
|
|
}
|
|
|
|
WebIDL::ExceptionOr<u32> CSSGroupingRule::insert_rule(StringView rule, u32 index)
|
|
{
|
|
TRY(m_rules->insert_a_css_rule(rule, index));
|
|
// NOTE: The spec doesn't say where to set the parent rule, so we'll do it here.
|
|
m_rules->item(index)->set_parent_rule(this);
|
|
return index;
|
|
}
|
|
|
|
WebIDL::ExceptionOr<void> CSSGroupingRule::delete_rule(u32 index)
|
|
{
|
|
return m_rules->remove_a_css_rule(index);
|
|
}
|
|
|
|
void CSSGroupingRule::for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const
|
|
{
|
|
m_rules->for_each_effective_style_rule(callback);
|
|
}
|
|
|
|
void CSSGroupingRule::for_each_effective_keyframes_at_rule(Function<void(CSSKeyframesRule const&)> const& callback) const
|
|
{
|
|
m_rules->for_each_effective_keyframes_at_rule(callback);
|
|
}
|
|
|
|
void CSSGroupingRule::set_parent_style_sheet(CSSStyleSheet* parent_style_sheet)
|
|
{
|
|
CSSRule::set_parent_style_sheet(parent_style_sheet);
|
|
for (auto& rule : *m_rules)
|
|
rule->set_parent_style_sheet(parent_style_sheet);
|
|
}
|
|
|
|
}
|