Issue metadata
Sign in to add a comment
|
DevTools: Preload and Disable Cache don't play well together |
||||||||||||||||||||||||
Issue description
Google Chrome 61.0.3123.0 (Official Build) canary (64-bit)
What steps will reproduce the problem?
(1) Open DevTools and make sure "Disable cache" is checked.
(2) Go to a page that contains <link rel="preload" href="foo">
(3) Expect foo resource to be downloaded
(4) In DevTools console, execute this simple command: fetch('foo');
Is 'foo' going to be downloaded from the network or from the cache?
As 'foo' is already preloaded, it is confusing to me that the browser will actually fetch it from the network which would not happen when 'foo' is a static resource with appropriate headers.
I wish the "Disable cache" would not apply to preloaded resources as it doesn't make sense in a real world situation.
What do you think?
,
Jun 19 2017
The real issue here is that `fetch()` is not fetching preloaded resources from the MemoryCache
,
Jun 20 2017
Thanks Yoav! Is https://bugs.chromium.org/p/chromium/issues/detail?id=735014 related as well? |
|||||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||||
Comment 1 by igrigo...@google.com
, Jun 16 2017