From cccb792055f42b678b90eab5f379d5a48557d57d Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 12 Mar 2011 22:49:13 +0000 Subject: Fix caption-side dump svn path=/trunk/libcss/; revision=11998 --- test/dump_computed.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') 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; -- cgit v1.2.3