| 
									
										
										
										
											2024-10-17 23:28:09 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2024, Alex Ungurianu <alex@ungurianu.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/FlyString.h>
 | 
					
						
							|  |  |  | #include <AK/NonnullRefPtr.h>
 | 
					
						
							|  |  |  | #include <AK/Optional.h>
 | 
					
						
							|  |  |  | #include <AK/String.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/CSSRule.h>
 | 
					
						
							|  |  |  | #include <LibWeb/Forward.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://drafts.css-houdini.org/css-properties-values-api/#the-css-property-rule-interface
 | 
					
						
							|  |  |  | class CSSPropertyRule final : public CSSRule { | 
					
						
							|  |  |  |     WEB_PLATFORM_OBJECT(CSSPropertyRule, CSSRule); | 
					
						
							| 
									
										
										
										
											2024-11-15 04:01:23 +13:00
										 |  |  |     GC_DECLARE_ALLOCATOR(CSSPropertyRule); | 
					
						
							| 
									
										
										
										
											2024-10-17 23:28:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2025-04-15 15:18:27 -06:00
										 |  |  |     static GC::Ref<CSSPropertyRule> create(JS::Realm&, FlyString name, FlyString syntax, bool inherits, RefPtr<CSSStyleValue const> initial_value); | 
					
						
							| 
									
										
										
										
											2024-10-17 23:28:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual ~CSSPropertyRule() = default; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     FlyString const& name() const { return m_name; } | 
					
						
							|  |  |  |     FlyString const& syntax() const { return m_syntax; } | 
					
						
							|  |  |  |     bool inherits() const { return m_inherits; } | 
					
						
							| 
									
										
										
										
											2025-04-07 11:54:51 +01:00
										 |  |  |     Optional<String> initial_value() const; | 
					
						
							| 
									
										
										
										
											2025-07-17 14:51:22 +02:00
										 |  |  |     RefPtr<CSSStyleValue const> initial_style_value() const { return m_initial_value; } | 
					
						
							| 
									
										
										
										
											2024-10-17 23:28:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2025-04-15 15:18:27 -06:00
										 |  |  |     CSSPropertyRule(JS::Realm&, FlyString name, FlyString syntax, bool inherits, RefPtr<CSSStyleValue const> initial_value); | 
					
						
							| 
									
										
										
										
											2024-10-17 23:28:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							|  |  |  |     virtual String serialized() const override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     FlyString m_name; | 
					
						
							|  |  |  |     FlyString m_syntax; | 
					
						
							|  |  |  |     bool m_inherits; | 
					
						
							| 
									
										
										
										
											2025-04-15 15:18:27 -06:00
										 |  |  |     RefPtr<CSSStyleValue const> m_initial_value; | 
					
						
							| 
									
										
										
										
											2024-10-17 23:28:09 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<> | 
					
						
							|  |  |  | inline bool CSSRule::fast_is<CSSPropertyRule>() const { return type() == CSSRule::Type::Property; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |