Is #815 - Use case-insensitive test 'html'

This commit is contained in:
Geoff McLane 2019-04-28 20:52:48 +02:00
parent 0873d74f8e
commit fd1fd8a388

View file

@ -1828,7 +1828,11 @@ static uint FindGivenVersion( TidyDocImpl* doc, Node* doctype )
if (!fpi || !fpi->value)
{
if (doctype->element && (TY_(tmbstrcmp)(doctype->element,"html") == 0))
/*\
* Is. #815 - change to case-insensitive test
* See REC: https://www.w3.org/TR/html5/syntax.html#the-doctype
\*/
if (doctype->element && (TY_(tmbstrcasecmp)(doctype->element,"html") == 0))
{
return VERS_HTML5; /* TODO: do we need to check MORE? */
}