Hey all,
I'm looking for a list of which browser versions support what javascript features. Obviously the more complete the list the better, but I'd be happy with a list that correlated javascript stuff from 2009 with IE8, Firefox 3.5, and Webkit 526.
Something like this contrived example:
Feature Environments Standard
------------------------------ ------------------ -------------
console.log() Chrome, Safari 4, defacto
Webkit 5xx,
Firebug Xx
...
function.prototype.displayName Safari 4.0 --
...
Object.defineProperty() IE8, etc. ECMAScript 3.1 Draft 5
...
Anybody know of such a list?
(Sorry if this is a dupe, but searching for this kind of thing isn't easy)
Edit:
Quirksmode is a good overview for DOM stuff (if a bit subjective), and the Mozilla docs are great for Firefox ... but I'm looking for a list of browser support of javascript features.
i.e., which browsers support __defineGetter__, or get property() {...}, which support what features of canvas, etc.