mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:22:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| class Node;
 | |
| class LayoutNode;
 | |
| class StyleRule;
 | |
| class StyleSheet;
 | |
| 
 | |
| void dump_tree(const Node&);
 | |
| void dump_tree(const LayoutNode&);
 | |
| void dump_sheet(const StyleSheet&);
 | |
| void dump_rule(const StyleRule&);
 | |
| 
 | |
| #undef HTML_DEBUG
 | 
