зеркало из https://github.com/mozilla/gecko-dev.git
Bug 545291 - Don't lookup non-quickstubbed properties. r=jorendorff
This commit is contained in:
Родитель
e41dcdd9c8
Коммит
7761c930de
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<script>
|
||||
|
||||
var textNode = document.createTextNode("x");
|
||||
textNode.__proto__.__proto__ = Components;
|
||||
textNode.__lookupSetter__("canCallMethod")();
|
||||
|
||||
</script>
|
||||
</head>
|
||||
</html>
|
|
@ -19,3 +19,4 @@ load 471366-1.html
|
|||
load 475185-1.html
|
||||
load 475291-1.html
|
||||
load 503286-1.html
|
||||
load 545291-1.html
|
||||
|
|
|
@ -295,7 +295,8 @@ LookupGetterOrSetter(JSContext *cx, JSBool wantGetter, uintN argc, jsval *vp)
|
|||
if(!name ||
|
||||
!IS_PROTO_CLASS(STOBJ_GET_CLASS(desc.obj)) ||
|
||||
(desc.attrs & (JSPROP_GETTER | JSPROP_SETTER)) ||
|
||||
!(desc.getter || desc.setter))
|
||||
!(desc.getter || desc.setter) ||
|
||||
desc.setter == STOBJ_GET_CLASS(desc.obj)->setProperty)
|
||||
{
|
||||
JS_SET_RVAL(cx, vp, JSVAL_VOID);
|
||||
return JS_TRUE;
|
||||
|
|
Загрузка…
Ссылка в новой задаче