зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
6c2e3c9d43
Коммит
8937c4d924
|
@ -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 {
|
||||
|
|
Загрузка…
Ссылка в новой задаче