blob: b81be854f4ea198d8c0c9c6047701e929507a537 [file] [log] [blame]
<html manifest="manifest-for-appcache-allowed.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>