<!DOCTYPE HTML> <html manifest="example.appcache"> <link rel="stylesheet" type="text/css" href="AppCache.css"> <meta charset="utf-8"> <title>Untitled Document</title> </head> <body> <p>Test to make sure css is being cached</p> <img src="large.jpg"> <script src="AppCache.js"></script> </body> </html>
In my example.appcache file there is:
The first time I went to the page, he asked
This website asks you to store data on your computer for offline use.
When I take Firefox offline and click update, jpg disappears.
Q: What do I need to do to make sure that the image is cached locally?
source share