mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:12:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <LibHTML/CSS/StyleDeclaration.h>
 | |
| 
 | |
| StyleDeclaration::StyleDeclaration(Vector<StyleProperty>&& properties)
 | |
|     : m_properties(move(properties))
 | |
| {
 | |
| }
 | |
| 
 | |
| StyleDeclaration::~StyleDeclaration()
 | |
| {
 | |
| }
 | 
