| 
									
										
										
										
											2025-07-30 14:14:53 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2025, Jelle Raaijmakers <jelle@ladybird.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/FlyString.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/PercentageOr.h>
 | 
					
						
							| 
									
										
										
										
											2025-08-08 10:11:51 +01:00
										 |  |  | #include <LibWeb/CSS/StyleValues/StyleValue.h>
 | 
					
						
							| 
									
										
										
										
											2025-07-30 14:14:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://drafts.csswg.org/css-anchor-position-1/#funcdef-anchor-size
 | 
					
						
							|  |  |  | class AnchorSizeStyleValue final : public StyleValueWithDefaultOperators<AnchorSizeStyleValue> { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     static ValueComparingNonnullRefPtr<AnchorSizeStyleValue const> create(Optional<FlyString> const& anchor_name, | 
					
						
							|  |  |  |         Optional<AnchorSize> const& anchor_size, | 
					
						
							| 
									
										
										
										
											2025-08-08 10:11:51 +01:00
										 |  |  |         ValueComparingRefPtr<StyleValue const> const& fallback_value); | 
					
						
							| 
									
										
										
										
											2025-07-30 14:14:53 +02:00
										 |  |  |     virtual ~AnchorSizeStyleValue() override = default; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual String to_string(SerializationMode) const override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bool properties_equal(AnchorSizeStyleValue const& other) const { return m_properties == other.m_properties; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Optional<FlyString const&> anchor_name() const { return m_properties.anchor_name; } | 
					
						
							|  |  |  |     Optional<AnchorSize> anchor_size() const { return m_properties.anchor_size; } | 
					
						
							| 
									
										
										
										
											2025-08-08 10:11:51 +01:00
										 |  |  |     ValueComparingRefPtr<StyleValue const> fallback_value() const | 
					
						
							| 
									
										
										
										
											2025-07-30 14:14:53 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         return m_properties.fallback_value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     AnchorSizeStyleValue(Optional<FlyString> const& anchor_name, Optional<AnchorSize> const& anchor_size, | 
					
						
							| 
									
										
										
										
											2025-08-08 10:11:51 +01:00
										 |  |  |         ValueComparingRefPtr<StyleValue const> const& fallback_value); | 
					
						
							| 
									
										
										
										
											2025-07-30 14:14:53 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     struct Properties { | 
					
						
							|  |  |  |         Optional<FlyString> anchor_name; | 
					
						
							|  |  |  |         Optional<AnchorSize> anchor_size; | 
					
						
							| 
									
										
										
										
											2025-08-08 10:11:51 +01:00
										 |  |  |         ValueComparingRefPtr<StyleValue const> fallback_value; | 
					
						
							| 
									
										
										
										
											2025-07-30 14:14:53 +02:00
										 |  |  |         bool operator==(Properties const&) const = default; | 
					
						
							|  |  |  |     } m_properties; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |