mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/CSS/CSSMathValue.h>
 | |
| 
 | |
| namespace Web::CSS {
 | |
| 
 | |
| // https://drafts.css-houdini.org/css-typed-om-1/#cssmathsum
 | |
| class CSSMathSum final : public CSSMathValue {
 | |
|     WEB_PLATFORM_OBJECT(CSSMathSum, CSSMathValue);
 | |
|     GC_DECLARE_ALLOCATOR(CSSMathSum);
 | |
| 
 | |
| public:
 | |
|     [[nodiscard]] static GC::Ref<CSSMathSum> create(JS::Realm&, NumericType, GC::Ref<CSSNumericArray>);
 | |
|     static WebIDL::ExceptionOr<GC::Ref<CSSMathSum>> construct_impl(JS::Realm&, Vector<CSSNumberish>);
 | |
| 
 | |
|     virtual ~CSSMathSum() override;
 | |
| 
 | |
|     virtual void initialize(JS::Realm&) override;
 | |
|     virtual void visit_edges(Visitor&) override;
 | |
| 
 | |
|     GC::Ref<CSSNumericArray> values() const;
 | |
| 
 | |
|     virtual String serialize_math_value(Nested, Parens) const override;
 | |
|     virtual bool is_equal_numeric_value(GC::Ref<CSSNumericValue> other) const override;
 | |
|     virtual Optional<SumValue> create_a_sum_value() const override;
 | |
| 
 | |
| private:
 | |
|     CSSMathSum(JS::Realm&, NumericType, GC::Ref<CSSNumericArray>);
 | |
|     GC::Ref<CSSNumericArray> m_values;
 | |
| };
 | |
| 
 | |
| }
 | 
