how do we tell a browser that supports Cache Storage to ignore Application Cache? Some of the posts have mentioned that the browser ignores the html5 cache manifest. But my tests suggest otherwise.
For example, if the html page contains:
<html manifest="manifests/hudddle.cache">
and also has the service worker code (not shown here), I find that both sets of files are stored. I tested on Chrome 63 on Mac OS X.
Below is the image of files showing Cache Storage.
And here is the image showing Application cache.
Or am I supposed to check this on the server side and use only 1 of the two caching methods? Thanks