XHR readystatechange Error@Firefox 3.5 + Firebug 1.4

문제

Firefox 3.5에서 onreadystatechange FAILS Error 발생

onreadystatechange(1).PNG  

발생하는 조건

Firefox 3.5 + Firebug 1.4(+)

 

참고링크

 

Prototype Library

Prototype 1.6.0.3 - Line 1230

if (Prototype.Browser.Gecko && /Firefox\/3\.5/.test(navigator.userAgent)){

this.transport.onload = this.transport.onerror = this.transport.onabort = this.onStateChange.bind(this);

} else {

this.transport.onreadystatechange = this.onStateChange.bind(this);

}