blob: 428ad92c782eaccb42b14b4ea9a78a4dba500073 [file] [log] [blame]
<html manifest="appcache-ordering.manifest">
<script>
var handled = false;
function installComplete() {
if (handled)
return;
handled = true;
window.parent.notify_appcache_installed(true);
}
function installFailed() {
if (handled)
return;
handled = true;
window.parent.notify_appcache_installed(false);
}
applicationCache.oncached = installComplete;
applicationCache.onnoupdate = installComplete;
applicationCache.onupdateready = installFailed;
applicationCache.onerror = installFailed;
applicationCache.onobsolete = installFailed;
</script>
</html>