From 06eee4636fd444a78ee5fad70ae24cc606a3ed93 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 29 Oct 2022 19:25:39 +0100 Subject: html: box_dump: Indicate descendant bounding box values --- content/handlers/html/box_inspect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/handlers/html') diff --git a/content/handlers/html/box_inspect.c b/content/handlers/html/box_inspect.c index b4b13940d..b6b9f8199 100644 --- a/content/handlers/html/box_inspect.c +++ b/content/handlers/html/box_inspect.c @@ -660,7 +660,7 @@ void box_dump(FILE *stream, struct box *box, unsigned int depth, bool style) if (box->max_width != UNKNOWN_MAX_WIDTH) { fprintf(stream, "min%i max%i ", box->min_width, box->max_width); } - fprintf(stream, "(%i %i %i %i) ", + fprintf(stream, "desc(%i %i %i %i) ", box->descendant_x0, box->descendant_y0, box->descendant_x1, box->descendant_y1); -- cgit v1.2.3