| 
									
										
										
										
											2021-10-08 17:48:14 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2022-04-22 14:17:23 +01:00
										 |  |  |  * Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org> | 
					
						
							| 
									
										
										
										
											2021-10-08 17:48:14 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/NonnullRefPtr.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/CSSConditionRule.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/CSSRule.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/Supports.h>
 | 
					
						
							|  |  |  | #include <LibWeb/Forward.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // https://www.w3.org/TR/css-conditional-3/#the-csssupportsrule-interface
 | 
					
						
							|  |  |  | class CSSSupportsRule final : public CSSConditionRule { | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  |     WEB_PLATFORM_OBJECT(CSSSupportsRule, CSSConditionRule); | 
					
						
							| 
									
										
										
										
											2023-11-19 19:47:52 +01:00
										 |  |  |     JS_DECLARE_ALLOCATOR(CSSSupportsRule); | 
					
						
							| 
									
										
										
										
											2021-10-08 17:48:14 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2023-08-13 13:05:26 +02:00
										 |  |  |     static JS::NonnullGCPtr<CSSSupportsRule> create(JS::Realm&, NonnullRefPtr<Supports>&&, CSSRuleList&); | 
					
						
							| 
									
										
										
										
											2021-10-08 17:48:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-22 14:17:23 +01:00
										 |  |  |     virtual ~CSSSupportsRule() = default; | 
					
						
							| 
									
										
										
										
											2021-10-08 17:48:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-26 17:28:31 +12:00
										 |  |  |     String condition_text() const override; | 
					
						
							| 
									
										
										
										
											2021-10-08 17:48:14 +01:00
										 |  |  |     virtual bool condition_matches() const override { return m_supports->matches(); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-01 19:55:31 +00:00
										 |  |  |     Supports const& supports() const { return m_supports; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-08 17:48:14 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-09-24 16:34:04 -06:00
										 |  |  |     CSSSupportsRule(JS::Realm&, NonnullRefPtr<Supports>&&, CSSRuleList&); | 
					
						
							| 
									
										
										
										
											2022-08-28 13:42:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-07 08:41:28 +02:00
										 |  |  |     virtual void initialize(JS::Realm&) override; | 
					
						
							| 
									
										
										
										
											2023-11-20 23:16:39 +13:00
										 |  |  |     virtual String serialized() const override; | 
					
						
							| 
									
										
										
										
											2021-10-15 16:42:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-08 17:48:14 +01:00
										 |  |  |     NonnullRefPtr<Supports> m_supports; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<> | 
					
						
							|  |  |  | inline bool CSSRule::fast_is<CSSSupportsRule>() const { return type() == CSSRule::Type::Supports; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |