summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-09-03 11:29:54 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-09-03 11:29:54 +0000
commitb33d81e5df0854fdb5af42f38dba26d2ec94370f (patch)
treeb1691510855524526a4713626d7c3088e1a2a304 /test
parent3e1a4bc4d2556149f1024c257d186e3e6771bbed (diff)
downloadlibcss-b33d81e5df0854fdb5af42f38dba26d2ec94370f.tar.gz
libcss-b33d81e5df0854fdb5af42f38dba26d2ec94370f.tar.bz2
Fix cursor URL dump.
svn path=/trunk/libcss/; revision=12705
Diffstat (limited to 'test')
-rw-r--r--test/dump_computed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dump_computed.h b/test/dump_computed.h
index 5416684..6a29c2d 100644
--- a/test/dump_computed.h
+++ b/test/dump_computed.h
@@ -1000,7 +1000,7 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
if (string_list != NULL) {
while (*string_list != NULL) {
- wrote = snprintf(ptr, *len, " url\"%.*s\")",
+ wrote = snprintf(ptr, *len, " url('%.*s')",
(int) lwc_string_length(*string_list),
lwc_string_data(*string_list));
ptr += wrote;