mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:02:44 +00:00 
			
		
		
		
	 edbf09ea29
			
		
	
	
		edbf09ea29
		
	
	
	
	
		
			
			This allows us to avoid unnecessary making unnecessary String copies of all the source text.
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			212 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			212 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/NonnullRefPtr.h>
 | |
| #include <LibHTML/CSS/StyleSheet.h>
 | |
| 
 | |
| NonnullRefPtr<StyleSheet> parse_css(const StringView&);
 | |
| NonnullRefPtr<StyleDeclaration> parse_css_declaration(const StringView&);
 | |
| 
 |