mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
22 lines
616 B
JavaScript
22 lines
616 B
JavaScript
function run_test()
|
|
{
|
|
do_get_profile();
|
|
|
|
asyncOpenCacheEntry("http://a/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NEW, "a1m", "a1d", function(entry) {
|
|
asyncOpenCacheEntry("http://a/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NORMAL, "a1m", "a1d", function(entry) {
|
|
var storage = getCacheStorage("disk");
|
|
storage.asyncDoomURI(createURI("http://a/"), "",
|
|
new EvictionCallback(true, function() {
|
|
finish_cache2_test();
|
|
})
|
|
);
|
|
})
|
|
);
|
|
})
|
|
);
|
|
|
|
do_test_pending();
|
|
}
|