blob: 40de6247e4e7409c04d5c1b62c793c06b8eed08e [file] [log] [blame]
<html manifest="manifest-for-appcache.manifest">
<head>
<script>
function complete() {
document.write('Cache found');
cleanup();
}
function error() {
document.write('Cache not found');
cleanup();
}
function cleanup() {
top.postMessage('done', '*');
}
try {
applicationCache.addEventListener('noupdate', complete, false);
applicationCache.addEventListener('cached', complete, false);
applicationCache.addEventListener('error', error, false);
} catch (e) {
document.write('Cache not found');
cleanup();
}
</script>
</head>
<body>
<img src="abe.png">
</body>
</head>