summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-06-30 12:05:29 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-06-30 12:05:29 +0000
commit0e6e5012bdfce873f85a8a221d520ef3bb397fff (patch)
tree8011a83e7a79dd591758b2ceeeb9431c15bfa7d1
parentfaab76e686bff3fcd086c6c411604b3dfa2dd6d4 (diff)
downloadlibcss-0e6e5012bdfce873f85a8a221d520ef3bb397fff.tar.gz
libcss-0e6e5012bdfce873f85a8a221d520ef3bb397fff.tar.bz2
s/background-image/list-style-image/
svn path=/trunk/libcss/; revision=8189
-rw-r--r--test/dump_computed.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dump_computed.h b/test/dump_computed.h
index be6b4bb..56a818c 100644
--- a/test/dump_computed.h
+++ b/test/dump_computed.h
@@ -1399,11 +1399,11 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
/* list-style-image */
val = css_computed_list_style_image(style, &url);
if (url != NULL) {
- wrote = snprintf(ptr, *len, "background-image: url('%.*s')\n",
+ wrote = snprintf(ptr, *len, "list-style-image: url('%.*s')\n",
(int) lwc_string_length(url),
lwc_string_data(url));
} else if (val == CSS_LIST_STYLE_IMAGE_NONE) {
- wrote = snprintf(ptr, *len, "background-image: none\n");
+ wrote = snprintf(ptr, *len, "list-style-image: none\n");
} else {
wrote = 0;
}