Home | History | Annotate | Download | only in appcache

Lines Matching full:applicationcache

3 <p>Test what applicationCache.update() does if update is already in progess.</p>
23 if (applicationCache.status != applicationCache.IDLE)
24 log("FAIL: Unexpected cache status while preparing to test: " + applicationCache.status);
27 applicationCache.onchecking = function() { if (++checkingCount != 1) log("FAIL: Too many checking events received.") }
29 applicationCache.update();
30 applicationCache.update();
31 applicationCache.update();
32 applicationCache.update();
33 applicationCache.update();
35 applicationCache.onnoupdate = done;
36 applicationCache.oncached = function() { log("FAIL: received unexpected cached event") }
48 applicationCache.oncached = test;
49 applicationCache.onnoupdate = test;
51 applicationCache.onupdateready = function() { log("FAIL: received unexpected updateready event") }
52 applicationCache.onerror = function() { log("FAIL: received unexpected error event") }