From 54ae60db8c504ac5793c60631066cb012b687378 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 29 Oct 2022 18:23:00 +0100 Subject: test: dump: Add support for display property grid values --- test/dump_computed.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/dump_computed.h b/test/dump_computed.h index 8ac6424..a5c4f13 100644 --- a/test/dump_computed.h +++ b/test/dump_computed.h @@ -1603,6 +1603,12 @@ static void dump_computed_style(const css_computed_style *style, char *buf, case CSS_DISPLAY_INLINE_FLEX: wrote = snprintf(ptr, *len, "display: inline-flex\n"); break; + case CSS_DISPLAY_GRID: + wrote = snprintf(ptr, *len, "display: grid\n"); + break; + case CSS_DISPLAY_INLINE_GRID: + wrote = snprintf(ptr, *len, "display: inline-grid\n"); + break; default: wrote = 0; break; -- cgit v1.2.1