mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +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()
 | |
| {
 | |
| }
 | 
