test_cache2-17-evict-all.js (276B)
1 "use strict"; 2 3 function run_test() { 4 do_get_profile(); 5 6 Services.cache2.clear(); 7 8 var storage = getCacheStorage("disk"); 9 storage.asyncVisitStorage( 10 new VisitCallback(0, 0, [], function () { 11 finish_cache2_test(); 12 }), 13 true 14 ); 15 16 do_test_pending(); 17 }