1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

fixing bug #94241 on HTML boolean attributes Daniel

* HTMLtree.c: fixing bug #94241 on HTML boolean attributes
Daniel
This commit is contained in:
Daniel Veillard
2002-09-26 12:40:03 +00:00
parent 2ace195685
commit abe0174442
2 changed files with 5 additions and 1 deletions

View File

@ -306,7 +306,7 @@ htmlIsBooleanAttr(const xmlChar *name)
int i = 0;
while (htmlBooleanAttrs[i] != NULL) {
if (xmlStrcmp((const xmlChar *)htmlBooleanAttrs[i], name) == 0)
if (xmlStrcasecmp((const xmlChar *)htmlBooleanAttrs[i], name) == 0)
return 1;
i++;
}