| 
									
										
										
										
											2021-09-12 20:05:29 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2021, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/CSSStyleDeclaration.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-23 12:35:56 +02:00
										 |  |  | class ResolvedCSSStyleDeclaration final : public CSSStyleDeclaration { | 
					
						
							| 
									
										
										
										
											2021-09-12 20:05:29 +02:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2021-09-23 12:35:56 +02:00
										 |  |  |     static NonnullRefPtr<ResolvedCSSStyleDeclaration> create(DOM::Element& element) | 
					
						
							| 
									
										
										
										
											2021-09-12 20:05:29 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-09-23 12:35:56 +02:00
										 |  |  |         return adopt_ref(*new ResolvedCSSStyleDeclaration(element)); | 
					
						
							| 
									
										
										
										
											2021-09-12 20:05:29 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-23 12:35:56 +02:00
										 |  |  |     virtual ~ResolvedCSSStyleDeclaration() override; | 
					
						
							| 
									
										
										
										
											2021-09-12 20:05:29 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual size_t length() const override; | 
					
						
							|  |  |  |     virtual String item(size_t index) const override; | 
					
						
							|  |  |  |     virtual Optional<StyleProperty> property(PropertyID) const override; | 
					
						
							|  |  |  |     virtual bool set_property(PropertyID, StringView css_text) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-01 19:57:45 +02:00
										 |  |  |     virtual String serialized() const override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-12 20:05:29 +02:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2021-09-23 12:35:56 +02:00
										 |  |  |     explicit ResolvedCSSStyleDeclaration(DOM::Element&); | 
					
						
							| 
									
										
										
										
											2021-09-12 20:05:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-18 13:14:40 +02:00
										 |  |  |     RefPtr<StyleValue> style_value_for_property(Layout::NodeWithStyle const&, PropertyID) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-12 20:05:29 +02:00
										 |  |  |     NonnullRefPtr<DOM::Element> m_element; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |