summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-13-evict-non-existing.js
blob: 1aa1072953a4e1f5d682dd76f92d28de2816d2a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function run_test()
{
  do_get_profile();

  var storage = getCacheStorage("disk");
  storage.asyncDoomURI(createURI("http://non-existing/"), "",
    new EvictionCallback(false, function() {
      finish_cache2_test();
    })
  );

  do_test_pending();
}