summaryrefslogtreecommitdiff
path: root/test/dump_computed.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-07-04 13:21:28 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-07-04 13:21:28 +0000
commit3b1a80cbb138c9c714efc0f32729506060c78c81 (patch)
tree344f832111f5dab566ed59b39ef65e42cac30cbc /test/dump_computed.h
parent2f5753d607a93c8ae18aab3dd675b111af7d879d (diff)
downloadlibcss-3b1a80cbb138c9c714efc0f32729506060c78c81.tar.gz
libcss-3b1a80cbb138c9c714efc0f32729506060c78c81.tar.bz2
Move quotes property into common style block.
svn path=/trunk/libcss/; revision=8307
Diffstat (limited to 'test/dump_computed.h')
-rw-r--r--test/dump_computed.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/dump_computed.h b/test/dump_computed.h
index a9e2d88..8269b3a 100644
--- a/test/dump_computed.h
+++ b/test/dump_computed.h
@@ -1899,6 +1899,9 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
case CSS_QUOTES_NONE:
wrote = snprintf(ptr, *len, "quotes: none\n");
break;
+ default:
+ wrote = 0;
+ break;
}
}
ptr += wrote;