mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +00:00
We now create a layout tree directly from the DOM tree. This way we don't actually lose text nodes ^)
12 lines
214 B
C++
12 lines
214 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&);
|