Firefox 6.0a1 (Nightly) にて、 Bug 649133 – Implement XHR2 responseType/response attributes mozilla-central: changeset 69304:618cad1b1743 が反映されてきてる。 このバグの目的としては http://dev.w3.org/2006/webapi/XMLHttpRequest-2/#the-responsetype-attribute のサポートなんだけど、副産物として、 XMLHttpRequestにあるreadyState値のプロパティも付いている。 これで、 var xhr = new XMLHttpRequest; xhr.open("GET", url, true); xhr.onreadystatechange = function() { switc