Lines Matching full:applicationcache
18 applicationCache.addEventListener('noupdate', function() { unexpectedEvent("noupdate") }, false);
19 applicationCache.addEventListener('downloading', function() { unexpectedEvent("downloading") }, false);
20 applicationCache.addEventListener('progress', function() { unexpectedEvent("progress") }, false);
21 applicationCache.addEventListener('updateready', function() { unexpectedEvent("updateready") }, false);
22 applicationCache.addEventListener('cached', function() { unexpectedEvent("cached") }, false);
23 applicationCache.addEventListener('obsolete', function() { unexpectedEvent("obsolete") }, false);
29 if (window.applicationCache.status)
30 log("FAILURE: Cache status is not UNCACHED, " + window.applicationCache.status);
51 applicationCache.addEventListener('checking', function() { gotCheckingEvent = true; }, false);
53 applicationCache.addEventListener('error', function() { test() }, false);