From b49832a9587b60533d025f73237ecdf51b3a576c Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 31 Aug 2014 16:22:33 +0100 Subject: Add float_container to box tree dump. --- render/box.c | 2 ++ 1 file changed, 2 insertions(+) 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++) -- cgit v1.2.3