summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-08-31 16:22:33 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2014-08-31 16:22:33 +0100
commitb49832a9587b60533d025f73237ecdf51b3a576c (patch)
tree19c8e0fe7e43d65479282eea08613f110edd3211 /render
parentf2ba35133be84e0ec24a2dc756a5719623674f1a (diff)
downloadnetsurf-b49832a9587b60533d025f73237ecdf51b3a576c.tar.gz
netsurf-b49832a9587b60533d025f73237ecdf51b3a576c.tar.bz2
Add float_container to box tree dump.
Diffstat (limited to 'render')
-rw-r--r--render/box.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/render/box.c b/render/box.c
index dd7c31f69..501bae6de 100644
--- a/render/box.c
+++ b/render/box.c
@@ -951,6 +951,8 @@ void box_dump(FILE *stream, struct box *box, unsigned int depth, bool style)
fprintf(stream, " float_children %p", box->float_children);
if (box->next_float)
fprintf(stream, " next_float %p", box->next_float);
+ if (box->float_container)
+ fprintf(stream, " float_container %p", box->float_container);
if (box->col) {
fprintf(stream, " (columns");
for (i = 0; i != box->columns; i++)