While appcache is downloading resources, if internet is lost at that time, i dont see appcache error event being called. It is stuck there with the status as 3
For the request that has failed, chrome logs it as net::ERR_INTERNET_DISCONNECTED error.
appCache.addEventListener('error', function(event){
console.log("AppCache event fired : error");
isAppCacheReady = true;
},false);
This is my error handler for appache.
Can someone please point out what am i missing here?