mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	 f87041bf3a
			
		
	
	
		f87041bf3a
		
	
	
	
	
		
			
			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
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			960 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			960 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2024, Matthew Olsson <mattco@serenityos.org>.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/Animations/Animation.h>
 | |
| #include <LibWeb/CSS/CSSStyleValue.h>
 | |
| #include <LibWeb/CSS/PropertyID.h>
 | |
| 
 | |
| namespace Web::CSS {
 | |
| 
 | |
| // https://www.w3.org/TR/css-animations-2/#cssanimation
 | |
| class CSSAnimation : public Animations::Animation {
 | |
|     WEB_PLATFORM_OBJECT(CSSAnimation, Animations::Animation);
 | |
|     GC_DECLARE_ALLOCATOR(CSSAnimation);
 | |
| 
 | |
| public:
 | |
|     static GC::Ref<CSSAnimation> create(JS::Realm&);
 | |
| 
 | |
|     FlyString const& animation_name() const { return id(); }
 | |
| 
 | |
|     virtual Animations::AnimationClass animation_class() const override;
 | |
|     virtual Optional<int> class_specific_composite_order(GC::Ref<Animations::Animation> other) const override;
 | |
| 
 | |
| private:
 | |
|     explicit CSSAnimation(JS::Realm&);
 | |
| 
 | |
|     virtual void initialize(JS::Realm&) override;
 | |
| 
 | |
|     virtual bool is_css_animation() const override { return true; }
 | |
| };
 | |
| 
 | |
| }
 |