0
votes
2answers
346 views

In Chrome, JS bound functions have null arguments.callee.caller

From Chrome 17 on, arguments.callee.caller seems to be null for bound functions: function a() { this.test = function() { console.debug('*** ' + arguments.callee.caller); }; this.test(); // This ...
1
vote
3answers
195 views

Is message property on Error propertyIsEnumerable?

What is the correct result of the following? Do any of the ECMA standards specify this? My current Chrome 14.0.835.186m thinks false and Firefox 3.6.22 thinks true. (new ...
1
vote
1answer
711 views

Chrome javascript bind function inconsistency

If I browse to about:blank, open the script console and type the following: var x = function() { console.info(this.toString() + ' -- ' + arguments.length.toString()); }; x.bind; The response ...
1
vote
1answer
694 views

Object.defineProperty(obj, “prop”, desc) behaving strangely

If I define an object and set its configurable property to false, but leave all other props alone, and later attempt to set that object's writable prop to false, then back to true, a TypeError is ...
12
votes
1answer
2k views

When will v8 implement ECMAScript 5?

I noticed that v8 is rather mute on the issue of ECMAScript 5th edition. V8 implements ECMAScript as specified in ECMA-262, 3rd edition, and runs on Windows XP and Vista, Mac OS X 10.5 (Leopard), ...