mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:02:45 +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!
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			901 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			901 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Function.h>
 | |
| #include <AK/NonnullRefPtr.h>
 | |
| #include <LibWeb/CSS/CSSRule.h>
 | |
| #include <LibWeb/CSS/CSSRuleList.h>
 | |
| #include <LibWeb/Forward.h>
 | |
| 
 | |
| namespace Web::CSS {
 | |
| 
 | |
| class CSSGroupingRule : public CSSRule {
 | |
|     AK_MAKE_NONCOPYABLE(CSSGroupingRule);
 | |
|     AK_MAKE_NONMOVABLE(CSSGroupingRule);
 | |
| 
 | |
| public:
 | |
|     ~CSSGroupingRule();
 | |
| 
 | |
|     CSSRuleList const& css_rules() const { return m_rules; }
 | |
|     CSSRuleList& css_rules() { return m_rules; }
 | |
|     size_t insert_rule(StringView rule, size_t index = 0);
 | |
|     void delete_rule(size_t index);
 | |
| 
 | |
|     virtual void for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const;
 | |
| 
 | |
| protected:
 | |
|     explicit CSSGroupingRule(NonnullRefPtrVector<CSSRule>&&);
 | |
| 
 | |
| private:
 | |
|     NonnullRefPtr<CSSRuleList> m_rules;
 | |
| };
 | |
| 
 | |
| }
 |