From c052d534e7d9485c4ce534f4286c56154ad7f247 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 16 Oct 2010 15:26:28 +0000 Subject: Add some missing CONTENT_WEBPs. WebP images in HTML docs now display correctly. svn path=/trunk/netsurf/; revision=10890 --- desktop/tree_url_node.c | 3 +++ render/box.c | 3 +++ render/box_construct.c | 3 +++ 3 files changed, 9 insertions(+) diff --git a/desktop/tree_url_node.c b/desktop/tree_url_node.c index 3bc9f90fc..86ab8b50a 100644 --- a/desktop/tree_url_node.c +++ b/desktop/tree_url_node.c @@ -89,6 +89,9 @@ struct icon_entry icon_table[] = { #endif #ifdef WITH_NS_SVG {CONTENT_SVG, NULL}, +#endif +#ifdef WITH_WEBP + {CONTENT_WEBP, NULL}, #endif {CONTENT_UNKNOWN, NULL}, diff --git a/render/box.c b/render/box.c index 6be898057..635bcbb3b 100644 --- a/render/box.c +++ b/render/box.c @@ -1160,6 +1160,9 @@ bool box_duplicate_main_tree(struct box *box, struct content *c, int *count) content_get_type(box->object) == CONTENT_JNG || content_get_type(box->object) == CONTENT_MNG || #endif +#ifdef WITH_WEBP + content_get_type(box->object) == CONTENT_WEBP || +#endif #if defined(WITH_SPRITE) || defined(WITH_NSSPRITE) content_get_type(box->object) == CONTENT_SPRITE || #endif diff --git a/render/box_construct.c b/render/box_construct.c index e214edfa6..a241dde43 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -80,6 +80,9 @@ static const content_type image_types[] = { #endif #ifdef WITH_ARTWORKS CONTENT_ARTWORKS, +#endif +#ifdef WITH_WEBP + CONTENT_WEBP, #endif CONTENT_UNKNOWN }; -- cgit v1.2.3