mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:22:43 +00:00 
			
		
		
		
	 6fc1810190
			
		
	
	
		6fc1810190
		
	
	
	
	
		
			
			This was only used for making sure `@import` rules got loaded, and since they handle that themselves now, we can get rid of all this code!
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			759 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			759 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/NonnullRefPtr.h>
 | |
| #include <LibWeb/CSS/CSSGroupingRule.h>
 | |
| #include <LibWeb/Forward.h>
 | |
| 
 | |
| namespace Web::CSS {
 | |
| 
 | |
| class CSSConditionRule : public CSSGroupingRule {
 | |
|     AK_MAKE_NONCOPYABLE(CSSConditionRule);
 | |
|     AK_MAKE_NONMOVABLE(CSSConditionRule);
 | |
| 
 | |
| public:
 | |
|     ~CSSConditionRule();
 | |
| 
 | |
|     virtual String condition_text() const = 0;
 | |
|     virtual void set_condition_text(String) = 0;
 | |
|     virtual bool condition_matches() const = 0;
 | |
| 
 | |
|     virtual void for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const override;
 | |
| 
 | |
| protected:
 | |
|     explicit CSSConditionRule(NonnullRefPtrVector<CSSRule>&&);
 | |
| };
 | |
| 
 | |
| }
 |