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:
@ -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++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user