1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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();
}
|