diff options
author | Michael Drake <tlsa@netsurf-browser.org> | 2011-09-03 11:29:54 +0000 |
---|---|---|
committer | Michael Drake <tlsa@netsurf-browser.org> | 2011-09-03 11:29:54 +0000 |
commit | b33d81e5df0854fdb5af42f38dba26d2ec94370f (patch) | |
tree | b1691510855524526a4713626d7c3088e1a2a304 /test | |
parent | 3e1a4bc4d2556149f1024c257d186e3e6771bbed (diff) | |
download | libcss-b33d81e5df0854fdb5af42f38dba26d2ec94370f.tar.gz |
Fix cursor URL dump.
svn path=/trunk/libcss/; revision=12705
Diffstat (limited to 'test')
-rw-r--r-- | test/dump_computed.h | 2 |
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; |