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

LibWeb+WebContent: Add option to dump session history of a traversable

This commit is contained in:
Aliaksandr Kalenik 2023-08-14 20:19:41 +02:00 committed by Andreas Kling
parent 537bf4c917
commit aef4b84e22
4 changed files with 37 additions and 0 deletions

View file

@ -13,6 +13,7 @@
namespace Web {
void dump_tree(HTML::TraversableNavigable&);
void dump_tree(StringBuilder&, DOM::Node const&);
void dump_tree(DOM::Node const&);
void dump_tree(StringBuilder&, Layout::Node const&, bool show_box_model = false, bool show_specified_style = false, bool colorize = false);