summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-08-evict-disk-by-memory-storage.js
blob: 395c41dd7c89b74c9919ff48837b1f093e26da94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"use strict";

function run_test() {
  do_get_profile();

  asyncOpenCacheEntry(
    "http://a/",
    "disk",
    Ci.nsICacheStorage.OPEN_NORMALLY,
    null,
    new OpenCallback(NEW, "a1m", "a1d", function (entry) {
      var storage = getCacheStorage("memory");
      // Have to fail
      storage.asyncDoomURI(
        createURI("http://a/"),
        "",
        new EvictionCallback(false, function () {
          finish_cache2_test();
        })
      );
    })
  );

  do_test_pending();
}