mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-02 22:30:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			241 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <LibHTML/CSS/StyleRule.h>
 | 
						|
 | 
						|
StyleRule::StyleRule(Vector<Selector>&& selectors, NonnullRefPtr<StyleDeclaration>&& declaration)
 | 
						|
    : m_selectors(move(selectors))
 | 
						|
    , m_declaration(move(declaration))
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
StyleRule::~StyleRule()
 | 
						|
{
 | 
						|
}
 |