summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 15:25:16 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 15:25:16 +0000
commit16fd6485b762a41926c932844f4b50b36725a4dd (patch)
treed65b01e2fddcaeb79464af1f06a36dce0e4c14f6
parent7674a6c49e4d0627cadc5da6b8d63f7cdeef5ca8 (diff)
downloadlibcss-16fd6485b762a41926c932844f4b50b36725a4dd.tar.gz
libcss-16fd6485b762a41926c932844f4b50b36725a4dd.tar.bz2
Add missing colons
svn path=/trunk/libcss/; revision=6496
-rw-r--r--test/dump_computed.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dump_computed.h b/test/dump_computed.h
index 0d81674..2274ad6 100644
--- a/test/dump_computed.h
+++ b/test/dump_computed.h
@@ -378,7 +378,7 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
case CSS_BORDER_STYLE_RIDGE:
wrote = snprintf(ptr, *len, "border-top-style: ridge\n");
break;
- case CSS_BORDER_STYLE_INSET
+ case CSS_BORDER_STYLE_INSET:
wrote = snprintf(ptr, *len, "border-top-style: inset\n");
break;
case CSS_BORDER_STYLE_OUTSET:
@@ -418,7 +418,7 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
case CSS_BORDER_STYLE_RIDGE:
wrote = snprintf(ptr, *len, "border-right-style: ridge\n");
break;
- case CSS_BORDER_STYLE_INSET
+ case CSS_BORDER_STYLE_INSET:
wrote = snprintf(ptr, *len, "border-right-style: inset\n");
break;
case CSS_BORDER_STYLE_OUTSET:
@@ -458,7 +458,7 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
case CSS_BORDER_STYLE_RIDGE:
wrote = snprintf(ptr, *len, "border-bottom-style: ridge\n");
break;
- case CSS_BORDER_STYLE_INSET
+ case CSS_BORDER_STYLE_INSET:
wrote = snprintf(ptr, *len, "border-bottom-style: inset\n");
break;
case CSS_BORDER_STYLE_OUTSET:
@@ -498,7 +498,7 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
case CSS_BORDER_STYLE_RIDGE:
wrote = snprintf(ptr, *len, "border-left-style: ridge\n");
break;
- case CSS_BORDER_STYLE_INSET
+ case CSS_BORDER_STYLE_INSET:
wrote = snprintf(ptr, *len, "border-left-style: inset\n");
break;
case CSS_BORDER_STYLE_OUTSET: