mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2021, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Forward.h>
 | |
| #include <LibWeb/Forward.h>
 | |
| 
 | |
| namespace Web {
 | |
| 
 | |
| void dump_tree(StringBuilder&, DOM::Node const&);
 | |
| void dump_tree(DOM::Node const&);
 | |
| void dump_tree(StringBuilder&, Layout::Node const&, bool show_box_model = false, bool show_specified_style = false, bool colorize = false);
 | |
| void dump_tree(Layout::Node const&, bool show_box_model = true, bool show_specified_style = false);
 | |
| void dump_tree(StringBuilder&, Painting::Paintable const&, bool colorize = false, int indent = 0);
 | |
| void dump_tree(Painting::Paintable const&);
 | |
| ErrorOr<void> dump_sheet(StringBuilder&, CSS::StyleSheet const&);
 | |
| ErrorOr<void> dump_sheet(CSS::StyleSheet const&);
 | |
| ErrorOr<void> dump_rule(StringBuilder&, CSS::CSSRule const&, int indent_levels = 0);
 | |
| ErrorOr<void> dump_rule(CSS::CSSRule const&);
 | |
| void dump_font_face_rule(StringBuilder&, CSS::CSSFontFaceRule const&, int indent_levels = 0);
 | |
| void dump_import_rule(StringBuilder&, CSS::CSSImportRule const&, int indent_levels = 0);
 | |
| ErrorOr<void> dump_media_rule(StringBuilder&, CSS::CSSMediaRule const&, int indent_levels = 0);
 | |
| ErrorOr<void> dump_style_rule(StringBuilder&, CSS::CSSStyleRule const&, int indent_levels = 0);
 | |
| ErrorOr<void> dump_supports_rule(StringBuilder&, CSS::CSSSupportsRule const&, int indent_levels = 0);
 | |
| void dump_selector(StringBuilder&, CSS::Selector const&);
 | |
| void dump_selector(CSS::Selector const&);
 | |
| 
 | |
| }
 | 
