Chrome DOM/JavaScript Reference

dom, google-chrome, javascript

Solution

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.

Problem

Is there a Chrome Javascript/DOM Reference page like the Mozilla Developer Network? which other page covers Chrome specific implementations of "The Standards"?

Original source

Related problems