Closed GoogleCodeExporter closed 9 years ago
The OS is Windows XP Professional
Original comment by inssomn...@gmail.com
on 26 May 2010 at 8:12
Managed somekind of fix.
I changed
var callbackArguments = Array.prototype.splice.call(arguments, 1);
to
var callbackArguments = Array.prototype.slice.call(arguments, 1);
(splice to slice)
Seems to behave ok. Please advise if is ok.
Thanks
Original comment by inssomn...@gmail.com
on 26 May 2010 at 9:02
Thanks for spotting that!
I've committed your fix to the repository.
:-)
To further verify the quality (and since I don't have access to native IE
browsers), could you please check out the full
project and run the whole testsuite in the IEs you have access to?
To do so you just need to open /spec/dom.html in those browsers. The tests
_should_ all be green, but I'd be curious
to know if there is any breakage.
Thanks in advance!
Original comment by mhaec...@gmail.com
on 30 May 2010 at 11:57
Original issue reported on code.google.com by
inssomn...@gmail.com
on 26 May 2010 at 7:58