summaryrefslogtreecommitdiff
path: root/test/dump_computed.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/dump_computed.h')
-rw-r--r--test/dump_computed.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/dump_computed.h b/test/dump_computed.h
index 1b7a1d9..5416684 100644
--- a/test/dump_computed.h
+++ b/test/dump_computed.h
@@ -719,13 +719,13 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
val = css_computed_caption_side(style);
switch (val) {
case CSS_CAPTION_SIDE_INHERIT:
- wrote = snprintf(ptr, *len, "caption_side: inherit\n");
+ wrote = snprintf(ptr, *len, "caption-side: inherit\n");
break;
case CSS_CAPTION_SIDE_TOP:
- wrote = snprintf(ptr, *len, "caption_side: top\n");
+ wrote = snprintf(ptr, *len, "caption-side: top\n");
break;
case CSS_CAPTION_SIDE_BOTTOM:
- wrote = snprintf(ptr, *len, "caption_side: bottom\n");
+ wrote = snprintf(ptr, *len, "caption-side: bottom\n");
break;
default:
wrote = 0;