mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	
		
			
	
	
		
			34 lines
		
	
	
	
		
			811 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			34 lines
		
	
	
	
		
			811 B
		
	
	
	
		
			C
		
	
	
	
	
	
|   | /*
 | ||
|  |  * Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org> | ||
|  |  * | ||
|  |  * SPDX-License-Identifier: BSD-2-Clause | ||
|  |  */ | ||
|  | 
 | ||
|  | #pragma once
 | ||
|  | 
 | ||
|  | #include <LibWeb/CSS/StyleValue.h>
 | ||
|  | 
 | ||
|  | namespace Web::CSS { | ||
|  | 
 | ||
|  | class InheritStyleValue final : public StyleValueWithDefaultOperators<InheritStyleValue> { | ||
|  | public: | ||
|  |     static ValueComparingNonnullRefPtr<InheritStyleValue> the() | ||
|  |     { | ||
|  |         static ValueComparingNonnullRefPtr<InheritStyleValue> instance = adopt_ref(*new InheritStyleValue); | ||
|  |         return instance; | ||
|  |     } | ||
|  |     virtual ~InheritStyleValue() override = default; | ||
|  | 
 | ||
|  |     ErrorOr<String> to_string() const override { return "inherit"_string; } | ||
|  | 
 | ||
|  |     bool properties_equal(InheritStyleValue const&) const { return true; } | ||
|  | 
 | ||
|  | private: | ||
|  |     InheritStyleValue() | ||
|  |         : StyleValueWithDefaultOperators(Type::Inherit) | ||
|  |     { | ||
|  |     } | ||
|  | }; | ||
|  | 
 | ||
|  | } |