зеркало из https://github.com/mozilla/pjs.git
bug 316990: Allow hasOwnProperty to work, even with split windows, by checking that the returned object is actually the inner object of |this|. r=brendan
This commit is contained in:
Родитель
6116765186
Коммит
2f7446b528
|
@ -1366,12 +1366,24 @@ js_HasOwnPropertyHelper(JSContext *cx, JSObject *obj, JSLookupPropOp lookup,
|
||||||
*rval = JSVAL_FALSE;
|
*rval = JSVAL_FALSE;
|
||||||
} else if (obj2 == obj) {
|
} else if (obj2 == obj) {
|
||||||
*rval = JSVAL_TRUE;
|
*rval = JSVAL_TRUE;
|
||||||
|
} else {
|
||||||
|
JSClass *clasp;
|
||||||
|
JSExtendedClass *xclasp;
|
||||||
|
|
||||||
|
clasp = OBJ_GET_CLASS(cx, obj);
|
||||||
|
xclasp = (clasp->flags & JSCLASS_IS_EXTENDED)
|
||||||
|
? (JSExtendedClass *)clasp
|
||||||
|
: NULL;
|
||||||
|
if (xclasp && xclasp->outerObject &&
|
||||||
|
xclasp->outerObject(cx, obj2) == obj) {
|
||||||
|
*rval = JSVAL_TRUE;
|
||||||
} else if (OBJ_IS_NATIVE(obj2)) {
|
} else if (OBJ_IS_NATIVE(obj2)) {
|
||||||
sprop = (JSScopeProperty *)prop;
|
sprop = (JSScopeProperty *)prop;
|
||||||
*rval = BOOLEAN_TO_JSVAL(SPROP_IS_SHARED_PERMANENT(sprop));
|
*rval = BOOLEAN_TO_JSVAL(SPROP_IS_SHARED_PERMANENT(sprop));
|
||||||
} else {
|
} else {
|
||||||
*rval = JSVAL_FALSE;
|
*rval = JSVAL_FALSE;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (prop)
|
if (prop)
|
||||||
OBJ_DROP_PROPERTY(cx, obj2, prop);
|
OBJ_DROP_PROPERTY(cx, obj2, prop);
|
||||||
return JS_TRUE;
|
return JS_TRUE;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче