views:

780

answers:

1

So Safari and Chrome have started in their betas to implement some ES5 stuff. For instance Object.create is in them.

Do any of you know if there is a website that shows the progress made in the browsers? ATM i need to use Object.freeze, and wanted to see which browsers (if any) supported that yet.

+3  A: 

edit: up to date list for major engines http://kangax.github.com/es5-compat-table/

Mozilla: https://developer.mozilla.org/En/JavaScript/ECMAScript_5_support_in_Mozilla

WebKit: http://labs.trolltech.com/blogs/2010/01/15/ecmascript-5-and-webkitjavascriptcore/

Chrome: V8 is supposed to be a ES3 implementation

Tihauan
IE 8 makes also small steps towards ES5: http://support.microsoft.com/kb/976662
Tihauan