I have an HTML 5 Application which should be cached by the Application Cache. In Chrome, Firefox and Safari everything is working fine but in IE 11 it won't work. The applicationCache status is 0 uncached and when the update method is called I'm getting an InvalidStateError. IE also says in the console of the developer mode "fault during analyzing the manifest file".
This is my manifest file
CACHE MANIFEST
# Version: ${project.version} Build: ${jenkins.buildId}
CACHE:
index.html
files/css/style.css
files/js/script.js
SOME OTHER FILES...
NETWORK:
*
I can't figure out what the problem is but if there is a mistake in the manifest (which IE tells me) why does it work in Chrome, FF and Safari without any problems?