Why does application caching prevent Cors request?
I have an example, two html pages are exactly identical, except for the second line:
index.html link
<!DOCTYPE html> <html manifest="main.appcache">
index2.html link
<!DOCTYPE html> <html>
Why does one manifest without work fine, and the manifest file only works for the first time and stops working when the application is cached? (press F5 repeatedly)
I tested with Firefox, Chrome and IE.
source share