From 4439cbc204f23277c40c12f76eac44c849a77bcc Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Tue, 28 Sep 2004 15:30:48 +0000 Subject: [project @ 2004-09-28 15:30:48 by tlsa] Support invalid polygon shape name in image maps. svn path=/import/netsurf/; revision=1292 --- desktop/imagemap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'desktop/imagemap.c') diff --git a/desktop/imagemap.c b/desktop/imagemap.c index b223bcf3f..db79cb960 100644 --- a/desktop/imagemap.c +++ b/desktop/imagemap.c @@ -278,7 +278,9 @@ struct mapentry *imagemap_addtolist(xmlNode *n, struct mapentry *entry) { else if (strcasecmp(shape, "circle") == 0) { new_map->type = IMAGEMAP_CIRCLE; } - else if (strcasecmp(shape, "poly") == 0) { + else if (strcasecmp(shape, "poly") == 0 || + strcasecmp(shape, "polygon") == 0) { + /* polygon shape name is not valid but sites use it */ new_map->type = IMAGEMAP_POLY; } else if (strcasecmp(shape, "default") == 0) { -- cgit v1.2.3