Status: Accepted
Owner: [email protected]
Labels: Type-Bug Priority-Medium
New issue 1120 by [email protected]: Object.isExtensible called on the
global object when this has been frozen returns true
http://code.google.com/p/v8/issues/detail?id=1120
We currently don't do a IsJSGlobalProxy check when we call
Object.isExtensible, causing the global object to show up as extensible
even when it has been frozen.
Reproduction:
var obj = this;
Object.freeze(obj);
print(Object.isExtensible(obj));
Expected result:
false
Actual result:
true
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev