summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/Dump.h
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2019-09-21 15:32:17 +0300
committerAndreas Kling <awesomekling@gmail.com>2019-09-28 18:29:42 +0200
commitfd0aa5dd43bdf9b3184a891481157113496de4cb (patch)
tree6aa9442e2e68c78d794e6d93f8b7ac3a9e0c6e47 /Libraries/LibHTML/Dump.h
parenta9ebd676e5446f2d1da1c93c5dd4e2dc98f2b1ba (diff)
downloadserenity-fd0aa5dd43bdf9b3184a891481157113496de4cb.zip
LibHTML: Get rid of the style tree
We now create a layout tree directly from the DOM tree. This way we don't actually lose text nodes ^)
Diffstat (limited to 'Libraries/LibHTML/Dump.h')
-rw-r--r--Libraries/LibHTML/Dump.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Libraries/LibHTML/Dump.h b/Libraries/LibHTML/Dump.h
index c7c0953e6d..546e556ba7 100644
--- a/Libraries/LibHTML/Dump.h
+++ b/Libraries/LibHTML/Dump.h
@@ -4,10 +4,8 @@ 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&);