Fix for bug 10644. In cases where we expect boolean attributes, accept anything that can be converted to a boolean. a=jar r=pollmann.

This commit is contained in:
vidur%netscape.com 1999-12-15 00:24:02 +00:00
Родитель 6c2e3c9d43
Коммит 8937c4d924
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -420,7 +420,7 @@ nsJSUtils::nsConvertJSValToBool(PRBool* aProp,
jsval aValue)
{
JSBool temp;
if (JSVAL_IS_BOOLEAN(aValue) && JS_ValueToBoolean(aContext, aValue, &temp)) {
if (JS_ValueToBoolean(aContext, aValue, &temp)) {
*aProp = (PRBool)temp;
}
else {