[project @ 2004-09-28 15:30:48 by tlsa]

Support invalid polygon shape name in image maps.

svn path=/import/netsurf/; revision=1292
This commit is contained in:
Michael Drake 2004-09-28 15:30:48 +00:00
parent 7a3345a08c
commit 4439cbc204
1 changed files with 3 additions and 1 deletions

View File

@ -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) {