I have an html file with a manifest.
<!DOCTYPE html>
<html manifest="manifest.appcache" type="text/cache-manifest">
<head>
<title>Sample</title>
</head>
<body>
Sample app
</body>
</html>
and manifest file as follows:
CACHE MANIFEST
*
usually firefox should offer me to store files in chache browser?
it doesn't prompt, and nothing caches when I look in dom using the Firebug DOM tab.
Can someone tell me what is going on here, or am I missing something?
source
share