Hello, Sriram!As far as I understand, the ERR_CACHE_MISS is not caused by a bug - this is a legitimate behavior independent from the resubmission dialog. Let me explain.When Chrome loads a page, there are a few types of load:- regular load - happens when the user enters url and hits enter or clicks on a link- reload - happens when the user hits the "reload" button- history load (or tab restore) - happens when the browser is started after being killed and restores its tab, or when the user hits the "back" buttonNow, form resubmission warning is supposed to be displayed when POST data are to be sent again in the "reload" type of load.ERR_CACHE_MISS is supposed to be returned from the cache layer when POST data are to be sent again in the "history load" type of load.So, these are supposed to be disjoint - I suppose you might be somehow triggering the wrong codepath to perform the load, but that's only a guess.I hope this helps - if you have further questions, please reply to me *and* chromi...@chromium.org , so that other people can help as well (my understanding of load policies is quite shallow).Cheers and good luck!P.On Mon, Feb 17, 2014 at 12:16 PM, Sriram Mouli <srim...@gmail.com> wrote:
Hi,Apologies for contacting you directly. However I am stuck in a problem and wanted to see if you can give me some pointers related to this.Since I saw that you have worked in an area related to that, hence e-mail'ing you directly.This is with connection to the form resubmission warning. I am working on a old trunk which dates back to Sept11, 2013 (222409) . I see that you have made the changes related to this on Oct23, 2013(230226) .When I am trying to implement a similar change for form repost warning in my checked out version, I am getting a ERR_CACHE_MISS and the post request is never submitted again even after clicking on Confirm resubmission.Now my problem is I cannot merge the latest changes at this point, so I wanted to check if you would by any chance know if an issue related to for resubmission was fixed during this time and only after that you added the dialog?--RgdsSriram