Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome XMLHttpRequest reference

Is there any documentation for the current Chrome implementation of XMLHttpRequest similar to this: https://developer.mozilla.org/en/XMLHttpRequest

I couldn't find anything on Chrome's dev site and I'd appreciate if anyone can tell me the differences between FF 3.6 and Chrome 8 XHR implementations.

like image 420
Amati Avatar asked Jan 19 '11 19:01

Amati


2 Answers

The Mozilla Developer Network documentation on XMLHTTPRequest has a browser compatibility chart which details the specifics of Chrome's implementation.

For example, the chart shows that the comment about timeout on an answer to this question is invalid since Chrome 29.

And since MDN has even more specific details for Gecko, it's easy to see how the XMLHTTPRequest implementations differ between Firefox and Chrome.

like image 71
bzlm Avatar answered Oct 15 '22 01:10

bzlm


It seems that this is the closest thing to API reference that exists for Chrome/WebKit: http://developer.apple.com/library/safari/#documentation/AppleApplications/Conceptual/SafariJSProgTopics/Articles/XHR.html

It's far from the quality of Mozilla's docs but I guess that's better than nothing.

like image 30
Amati Avatar answered Oct 15 '22 02:10

Amati