Re: [w3c/ServiceWorker] Service Worker makes AJAX Progress Listener not Working (#1141)

This is about progress on an upload body, right?

The progress may not be right if the service worker script clones or reads the FetchEvent.request's body.  Are you doing that?  Can you post your fetch event handler?

Besides that, I am willing to bet service worker implementations have bugs related to this.  In gecko I am fairly sure we don't pipe back progress from the network socket, through the SW, back to the original XHR.  In theory this could be possible if you do a pass-through like `fetch(event.request)`.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/1141#issuecomment-301791265

Received on Tuesday, 16 May 2017 14:00:21 UTC