Is there a Chrome Javascript/DOM Reference page like the Mozilla Developer Network? which other page covers Chrome specific implementations of "The Standards"?
-
1http://stackoverflow.com/questions/3768606/where-is-the-javascript-dom-api-documented/3768978#3768978 – Roatin Marth Mar 27 '13 at 15:45
-
Combine the [MDN](https://developer.mozilla.org/) with [CanIUse.com](http://caniuse.com)? – John Mee Aug 08 '17 at 23:59
2 Answers
There is nothing Chrome specific that I know of. There is Webkit API documentation but that is not very comprehensive and also just ends up pointing to MDN! If you see the Using the Document Object Model From JavaScript → Other Resources page it states:
Mozilla Gecko DOM Reference is one of the most comprehensive references for the JavaScript DOM
WebPlatform.org will eventually cover all browsers.
Also, I usually find that MDN highlights compatibility in other browsers anyway, for example Chrome is shown on the DOM Mutation Observer page.

- 43,435
- 12
- 121
- 150
-
2The problem is that Chrome implementation doesn't always comply with MDN and W3.org. In such cases, I end up reverse-engineering the docs. – Tomáš Zato Dec 02 '14 at 14:54
https://groups.google.com/a/chromium.org/forum/?fromgroups=#!topic/chromium-discuss/N56v_0tOVaM
Chrome uses V8 JavaScript Engine, it implements ECMAScript ECMA-262, http://www.ecma-international.org/publications/standards/Ecma-262.html
Check out these links for implementations and standards

- 167
- 2
- 13
-
Corrected second link: http://www.ecma-international.org/publications/standards/Ecma-262.htm – Vic Apr 27 '20 at 08:21