[Bug 21111] response property should return incremental data for ArrayBuffer and Blob

https://www.w3.org/Bugs/Public/show_bug.cgi?id=21111

--- Comment #1 from Elliott Sprehn <esprehn@gmail.com> ---
Note Mozilla already has support for some of this with special prefixed
responseTypes:

https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest

"moz-blob"    Used by Firefox to allow retrieving partial Blob data from
progress events. This lets your progress event handler start processing data
while it's still being received. Requires Gecko 12.0

There's also 

"moz-chunked-text"    
"moz-chunked-arraybuffer"

which do actual streaming of the data where the buffer in the progress event is
only the data received since the last event.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Monday, 25 February 2013 23:35:37 UTC