summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-03-12 22:49:13 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-03-12 22:49:13 +0000
commitcccb792055f42b678b90eab5f379d5a48557d57d (patch)
tree533fcf40e3be90767472bb5de649cc2dfe535525 /test
parent7916a0cf4a5e26d3a0a94e40a8660d5a1b26ce1e (diff)
downloadlibcss-cccb792055f42b678b90eab5f379d5a48557d57d.tar.gz
libcss-cccb792055f42b678b90eab5f379d5a48557d57d.tar.bz2
Fix caption-side dump
svn path=/trunk/libcss/; revision=11998
Diffstat (limited to 'test')
-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;