| 
									
										
										
										
											2025-08-11 15:11:49 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2025, Sam Atkins <sam@ladybird.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/StylePropertyMapReadOnly.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://drafts.css-houdini.org/css-typed-om-1/#stylepropertymap
 | 
					
						
							|  |  |  | class StylePropertyMap : public StylePropertyMapReadOnly { | 
					
						
							|  |  |  |     WEB_PLATFORM_OBJECT(StylePropertyMap, StylePropertyMapReadOnly); | 
					
						
							|  |  |  |     GC_DECLARE_ALLOCATOR(StylePropertyMap); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     [[nodiscard]] static GC::Ref<StylePropertyMap> create(JS::Realm&, GC::Ref<CSSStyleDeclaration>); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual ~StylePropertyMap() override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     WebIDL::ExceptionOr<void> set(String property, Vector<Variant<GC::Root<CSSStyleValue>, String>> values); | 
					
						
							|  |  |  |     WebIDL::ExceptionOr<void> append(String property, Vector<Variant<GC::Root<CSSStyleValue>, String>> values); | 
					
						
							|  |  |  |     WebIDL::ExceptionOr<void> delete_(String property); | 
					
						
							| 
									
										
										
										
											2025-08-13 13:52:59 +01:00
										 |  |  |     WebIDL::ExceptionOr<void> clear(); | 
					
						
							| 
									
										
										
										
											2025-08-11 15:11:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     explicit StylePropertyMap(JS::Realm&, GC::Ref<CSSStyleDeclaration>); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-13 13:52:59 +01:00
										 |  |  |     CSSStyleDeclaration& declarations(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-11 15:11:49 +01:00
										 |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |