зеркало из https://github.com/mozilla/gecko-dev.git
Bug 727337 - Switch IsAllowedAttribute over to lossless conversion to avoid false positives; r=bz
This commit is contained in:
Родитель
8741286542
Коммит
203c55094f
|
@ -554,10 +554,9 @@ mozSanitizingHTMLSerializer::IsAllowedAttribute(nsHTMLTag aTag,
|
||||||
NS_ENSURE_TRUE(attr_bag, false);
|
NS_ENSURE_TRUE(attr_bag, false);
|
||||||
|
|
||||||
bool allowed;
|
bool allowed;
|
||||||
nsAutoString attr(anAttributeName);
|
nsCAutoString attr;
|
||||||
ToLowerCase(attr);
|
ToLowerCase(NS_ConvertUTF16toUTF8(anAttributeName), attr);
|
||||||
rv = attr_bag->Has(NS_LossyConvertUTF16toASCII(attr).get(),
|
rv = attr_bag->Has(attr.get(), &allowed);
|
||||||
&allowed);
|
|
||||||
if (NS_FAILED(rv))
|
if (NS_FAILED(rv))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче