mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	This is a base type for the various transform functions. CSSMatrixComponent's to_string() can throw exceptions, so to_string() is implemented that way. https://github.com/w3c/fxtf-drafts/issues/611 +9 WPT subtests.
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include "CSSTransformComponent.h"
 | 
						|
#include <LibWeb/Bindings/CSSTransformComponentPrototype.h>
 | 
						|
#include <LibWeb/Bindings/Intrinsics.h>
 | 
						|
 | 
						|
namespace Web::CSS {
 | 
						|
 | 
						|
GC_DEFINE_ALLOCATOR(CSSTransformComponent);
 | 
						|
 | 
						|
CSSTransformComponent::CSSTransformComponent(JS::Realm& realm, Is2D is_2d)
 | 
						|
    : Bindings::PlatformObject(realm)
 | 
						|
    , m_is_2d(is_2d == Is2D::Yes)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
CSSTransformComponent::~CSSTransformComponent() = default;
 | 
						|
 | 
						|
void CSSTransformComponent::initialize(JS::Realm& realm)
 | 
						|
{
 | 
						|
    WEB_SET_PROTOTYPE_FOR_INTERFACE(CSSTransformComponent);
 | 
						|
    Base::initialize(realm);
 | 
						|
}
 | 
						|
 | 
						|
}
 |