mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2023, Ali Mohammad Pur <mpfard@serenityos.org>
 | 
						|
 * Copyright (c) 2024, Andreas Kling <andreas@ladybird.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <LibWeb/Bindings/CSSKeyframesRulePrototype.h>
 | 
						|
#include <LibWeb/Bindings/Intrinsics.h>
 | 
						|
#include <LibWeb/CSS/CSSKeyframesRule.h>
 | 
						|
#include <LibWeb/CSS/CSSRuleList.h>
 | 
						|
 | 
						|
namespace Web::CSS {
 | 
						|
 | 
						|
GC_DEFINE_ALLOCATOR(CSSKeyframesRule);
 | 
						|
 | 
						|
GC::Ref<CSSKeyframesRule> CSSKeyframesRule::create(JS::Realm& realm, FlyString name, GC::Ref<CSSRuleList> css_rules)
 | 
						|
{
 | 
						|
    return realm.create<CSSKeyframesRule>(realm, move(name), move(css_rules));
 | 
						|
}
 | 
						|
 | 
						|
CSSKeyframesRule::CSSKeyframesRule(JS::Realm& realm, FlyString name, GC::Ref<CSSRuleList> keyframes)
 | 
						|
    : CSSRule(realm, Type::Keyframes)
 | 
						|
    , m_name(move(name))
 | 
						|
    , m_rules(move(keyframes))
 | 
						|
{
 | 
						|
    for (auto& rule : *m_rules)
 | 
						|
        rule->set_parent_rule(this);
 | 
						|
}
 | 
						|
 | 
						|
void CSSKeyframesRule::visit_edges(Visitor& visitor)
 | 
						|
{
 | 
						|
    Base::visit_edges(visitor);
 | 
						|
    visitor.visit(m_rules);
 | 
						|
}
 | 
						|
 | 
						|
void CSSKeyframesRule::initialize(JS::Realm& realm)
 | 
						|
{
 | 
						|
    Base::initialize(realm);
 | 
						|
    WEB_SET_PROTOTYPE_FOR_INTERFACE(CSSKeyframesRule);
 | 
						|
}
 | 
						|
 | 
						|
String CSSKeyframesRule::serialized() const
 | 
						|
{
 | 
						|
    StringBuilder builder;
 | 
						|
    builder.appendff("@keyframes \"{}\"", name());
 | 
						|
    builder.append(" { "sv);
 | 
						|
    for (auto const& keyframe : *m_rules) {
 | 
						|
        builder.append(keyframe->css_text());
 | 
						|
        builder.append(' ');
 | 
						|
    }
 | 
						|
    builder.append('}');
 | 
						|
    return MUST(builder.to_string());
 | 
						|
}
 | 
						|
 | 
						|
WebIDL::UnsignedLong CSSKeyframesRule::length() const
 | 
						|
{
 | 
						|
    return m_rules->length();
 | 
						|
}
 | 
						|
 | 
						|
}
 |