summaryrefslogtreecommitdiff
path: root/content/handlers/html/box_inspect.c
diff options
context:
space:
mode:
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 ");
}