summaryrefslogtreecommitdiff
path: root/content/handlers/html
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2022-10-29 19:25:39 +0100
committerMichael Drake <mdrake.unique@gmail.com>2022-10-29 20:30:48 +0100
commit06eee4636fd444a78ee5fad70ae24cc606a3ed93 (patch)
tree6f89991668285f0370cc8ccd5160ab9d9259b522 /content/handlers/html
parent6da0bf5b846de88659c25ba22195f9c21f0e3759 (diff)
downloadnetsurf-06eee4636fd444a78ee5fad70ae24cc606a3ed93.tar.gz
netsurf-06eee4636fd444a78ee5fad70ae24cc606a3ed93.tar.bz2
html: box_dump: Indicate descendant bounding box values
Diffstat (limited to 'content/handlers/html')
-rw-r--r--content/handlers/html/box_inspect.c2
1 files changed, 1 insertions, 1 deletions
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);