| 
									
										
										
										
											2025-08-19 13:55:42 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2025, Sam Atkins <sam@ladybird.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/FlyString.h>
 | 
					
						
							|  |  |  | #include <LibWeb/Bindings/CSSNumericValuePrototype.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/CSSStyleValue.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/NumericType.h>
 | 
					
						
							| 
									
										
										
										
											2025-09-16 15:06:38 +01:00
										 |  |  | #include <LibWeb/WebIDL/ExceptionOr.h>
 | 
					
						
							| 
									
										
										
										
											2025-08-19 13:55:42 +01:00
										 |  |  | #include <LibWeb/WebIDL/Types.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct CSSNumericType { | 
					
						
							| 
									
										
										
										
											2025-08-22 12:02:52 +01:00
										 |  |  |     Optional<WebIDL::Long> length; | 
					
						
							|  |  |  |     Optional<WebIDL::Long> angle; | 
					
						
							|  |  |  |     Optional<WebIDL::Long> time; | 
					
						
							|  |  |  |     Optional<WebIDL::Long> frequency; | 
					
						
							|  |  |  |     Optional<WebIDL::Long> resolution; | 
					
						
							|  |  |  |     Optional<WebIDL::Long> flex; | 
					
						
							|  |  |  |     Optional<WebIDL::Long> percent; | 
					
						
							|  |  |  |     Optional<Bindings::CSSNumericBaseType> percent_hint; | 
					
						
							| 
									
										
										
										
											2025-08-19 13:55:42 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-22 12:53:15 +01:00
										 |  |  | // https://drafts.css-houdini.org/css-typed-om-1/#typedefdef-cssnumberish
 | 
					
						
							|  |  |  | using CSSNumberish = Variant<double, GC::Root<CSSNumericValue>>; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-09-11 16:48:57 +01:00
										 |  |  | // https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue-sum-value
 | 
					
						
							|  |  |  | struct SumValueItem { | 
					
						
							|  |  |  |     double value; | 
					
						
							|  |  |  |     UnitMap unit_map; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | using SumValue = Vector<SumValueItem>; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-19 13:55:42 +01:00
										 |  |  | // https://drafts.css-houdini.org/css-typed-om-1/#cssnumericvalue
 | 
					
						
							|  |  |  | class CSSNumericValue : public CSSStyleValue { | 
					
						
							|  |  |  |     WEB_PLATFORM_OBJECT(CSSNumericValue, CSSStyleValue); | 
					
						
							|  |  |  |     GC_DECLARE_ALLOCATOR(CSSNumericValue); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     struct SerializationParams { | 
					
						
							|  |  |  |         Optional<double> minimum {}; | 
					
						
							|  |  |  |         Optional<double> maximum {}; | 
					
						
							|  |  |  |         bool nested { false }; | 
					
						
							|  |  |  |         bool parenless { false }; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |     virtual ~CSSNumericValue() override = default; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-22 12:53:15 +01:00
										 |  |  |     bool equals_for_bindings(Vector<CSSNumberish>) const; | 
					
						
							|  |  |  |     virtual bool is_equal_numeric_value(GC::Ref<CSSNumericValue> other) const = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-09-11 17:00:26 +01:00
										 |  |  |     WebIDL::ExceptionOr<GC::Ref<CSSUnitValue>> to(FlyString const& unit) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-09-11 16:48:57 +01:00
										 |  |  |     virtual Optional<SumValue> create_a_sum_value() const = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-19 13:55:42 +01:00
										 |  |  |     CSSNumericType type_for_bindings() const; | 
					
						
							|  |  |  |     NumericType const& type() const { return m_type; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-09-16 15:06:38 +01:00
										 |  |  |     virtual WebIDL::ExceptionOr<String> to_string() const final override { return to_string({}); } | 
					
						
							| 
									
										
										
										
											2025-08-19 13:55:42 +01:00
										 |  |  |     String to_string(SerializationParams const&) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-21 16:20:24 +01:00
										 |  |  |     static WebIDL::ExceptionOr<GC::Ref<CSSNumericValue>> parse(JS::VM&, String const& css_text); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-19 13:55:42 +01:00
										 |  |  | protected: | 
					
						
							|  |  |  |     explicit CSSNumericValue(JS::Realm&, NumericType); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     NumericType m_type; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-21 12:44:57 +01:00
										 |  |  | GC::Ref<CSSNumericValue> rectify_a_numberish_value(JS::Realm&, CSSNumberish const&, Optional<FlyString> unit = {}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-19 13:55:42 +01:00
										 |  |  | } |