1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:07:34 +00:00

LibHTML: Start fleshing out a basic layout tree.

This commit is contained in:
Andreas Kling 2019-06-15 22:49:44 +02:00
parent f8a86b5164
commit 8a0e21b22b
24 changed files with 338 additions and 18 deletions

View file

@ -1,5 +1,7 @@
#pragma once
class Node;
class LayoutNode;
void dump_tree(Node&);
void dump_tree(const Node&);
void dump_tree(const LayoutNode&);