Lines Matching full:obsolete
6 <li>Frame 2: Manifest loading results in 404 response, so the cache group becomes obsolete, and an obsolete event is dispatched (because the document in frame was associated with a cache in the group).
8 <li>Frame 4: Manifest is now available, so the document gets associated with a cache in a newly created group; the obsolete cache group is not affected.
48 // The frame will be associated to a cache, but update will obsolete it.
57 applicationCache.onchecking = function() { log("Unexpected checking event after obsolete event") }
58 applicationCache.onupdateready = function() { log("Unexpected updateready event after obsolete event") }
59 applicationCache.onerror = function() { log("Unexpected error event after obsolete event") }
60 applicationCache.onnoupdate = function() { log("Unexpected noupdate event after obsolete event") }
61 applicationCache.oncached = function() { log("Unexpected cached event after obsolete event") }
93 if (applicationCache.status != applicationCache.UNCACHED && applicationCache.status != applicationCache.OBSOLETE) {