mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-25 18:52:22 -05:00
9 lines
163 B
C++
9 lines
163 B
C++
#pragma once
|
|
|
|
class Node;
|
|
class LayoutNode;
|
|
class StyleSheet;
|
|
|
|
void dump_tree(const Node&);
|
|
void dump_tree(const LayoutNode&);
|
|
void dump_sheet(const StyleSheet&);
|