1 <html manifest=
"appcache-ordering.manifest">
5 function installComplete() {
9 window
.parent
.notify_appcache_installed(true);
12 function installFailed() {
16 window
.parent
.notify_appcache_installed(false);
19 applicationCache
.oncached
= installComplete
;
20 applicationCache
.onnoupdate
= installComplete
;
21 applicationCache
.onupdateready
= installFailed
;
22 applicationCache
.onerror
= installFailed
;
23 applicationCache
.onobsolete
= installFailed
;