From 0e6e5012bdfce873f85a8a221d520ef3bb397fff Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Tue, 30 Jun 2009 12:05:29 +0000 Subject: s/background-image/list-style-image/ svn path=/trunk/libcss/; revision=8189 --- test/dump_computed.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/dump_computed.h') 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; } -- cgit v1.2.3