summaryrefslogtreecommitdiff
path: root/content/handlers/html/box_inspect.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2022-10-29 19:27:27 +0100
committerMichael Drake <mdrake.unique@gmail.com>2022-10-29 20:30:48 +0100
commit8615964c3fd381ef6d9a20487b9120135182dfd1 (patch)
treeaa84a42f4d0058a7e4e3232d7da5dc79533e52ed /content/handlers/html/box_inspect.c
parent06eee4636fd444a78ee5fad70ae24cc606a3ed93 (diff)
downloadnetsurf-8615964c3fd381ef6d9a20487b9120135182dfd1.tar.gz
netsurf-8615964c3fd381ef6d9a20487b9120135182dfd1.tar.bz2
html: layout: Initial implementation of display: flex
Diffstat (limited to 'content/handlers/html/box_inspect.c')
-rw-r--r--content/handlers/html/box_inspect.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/content/handlers/html/box_inspect.c b/content/handlers/html/box_inspect.c
index b6b9f8199..181f58cf8 100644
--- a/content/handlers/html/box_inspect.c
+++ b/content/handlers/html/box_inspect.c
@@ -724,6 +724,14 @@ void box_dump(FILE *stream, struct box *box, unsigned int depth, bool style)
fprintf(stream, "TEXT ");
break;
+ case BOX_FLEX:
+ fprintf(stream, "FLEX ");
+ break;
+
+ case BOX_INLINE_FLEX:
+ fprintf(stream, "INLINE_FLEX ");
+ break;
+
default:
fprintf(stream, "Unknown box type ");
}