summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/Dump.h
blob: c7c0953e6d67da677954af09c70fd7f94c2c1385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

class Node;
class LayoutNode;
class StyleRule;
class StyleSheet;
class StyledNode;

void dump_tree(const Node&);
void dump_tree(const StyledNode&);
void dump_tree(const LayoutNode&);
void dump_sheet(const StyleSheet&);
void dump_rule(const StyleRule&);