Why caching an application prevent Cors request?
I have an example, two html page exactly Identical except the second line :
index.html link
<!DOCTYPE html>
<html manifest="main.appcache">
index2.html link
<!DOCTYPE html>
<html>
Why the one without manifest is working fine and the one with manifest works only the first time and stop working when the application is cached? (press F5 several times)
I tested with Firefox, Chrome and IE.