aboutsummaryrefslogtreecommitdiffstats
path: root/HTMLtree.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-09-26 12:40:03 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-09-26 12:40:03 +0000
commitabe01744426f83c44faec18aef7f3fead4696e5e (patch)
treec7578eed0951e82903b9b33b4fcfc4b2a6b27d3a /HTMLtree.c
parent2ace1956859a5429c6e353a84cb05fafd93c8f73 (diff)
downloadandroid_external_libxml2-abe01744426f83c44faec18aef7f3fead4696e5e.tar.gz
android_external_libxml2-abe01744426f83c44faec18aef7f3fead4696e5e.tar.bz2
android_external_libxml2-abe01744426f83c44faec18aef7f3fead4696e5e.zip
fixing bug #94241 on HTML boolean attributes Daniel
* HTMLtree.c: fixing bug #94241 on HTML boolean attributes Daniel
Diffstat (limited to 'HTMLtree.c')
-rw-r--r--HTMLtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/HTMLtree.c b/HTMLtree.c
index 82e1dc11..cbd0ef0c 100644
--- a/HTMLtree.c
+++ b/HTMLtree.c
@@ -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++;
}