tenfourfox/netwerk/test/unit/test_cache2-10-evict-direct.js

21 lines
535 B
JavaScript
Raw Normal View History

2017-04-19 07:56:45 +00:00
function run_test()
{
do_get_profile();
asyncOpenCacheEntry("http://b/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
new OpenCallback(NEW, "b1m", "b1d", function(entry) {
asyncOpenCacheEntry("http://b/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
new OpenCallback(NORMAL, "b1m", "b1d", function(entry) {
entry.asyncDoom(
new EvictionCallback(true, function() {
finish_cache2_test();
})
);
})
);
})
);
do_test_pending();
}