| 
									
										
										
										
											2025-08-19 15:35:09 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 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/#cssmathproduct
 | 
					
						
							| 
									
										
										
										
											2025-09-11 11:24:15 +01:00
										 |  |  | class CSSMathProduct final : public CSSMathValue { | 
					
						
							| 
									
										
										
										
											2025-08-19 15:35:09 +01:00
										 |  |  |     WEB_PLATFORM_OBJECT(CSSMathProduct, CSSMathValue); | 
					
						
							|  |  |  |     GC_DECLARE_ALLOCATOR(CSSMathProduct); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     [[nodiscard]] static GC::Ref<CSSMathProduct> create(JS::Realm&, NumericType, GC::Ref<CSSNumericArray>); | 
					
						
							|  |  |  |     static WebIDL::ExceptionOr<GC::Ref<CSSMathProduct>> construct_impl(JS::Realm&, Vector<CSSNumberish>); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual ~CSSMathProduct() 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; | 
					
						
							| 
									
										
										
										
											2025-08-22 12:53:15 +01:00
										 |  |  |     virtual bool is_equal_numeric_value(GC::Ref<CSSNumericValue> other) const override; | 
					
						
							| 
									
										
										
										
											2025-09-11 16:48:57 +01:00
										 |  |  |     virtual Optional<SumValue> create_a_sum_value() const override; | 
					
						
							| 
									
										
										
										
											2025-08-19 15:35:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     CSSMathProduct(JS::Realm&, NumericType, GC::Ref<CSSNumericArray>); | 
					
						
							|  |  |  |     GC::Ref<CSSNumericArray> m_values; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |