tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_cache2-13-evict-non-existing.js (280B)


      1 "use strict";
      2 
      3 function run_test() {
      4  do_get_profile();
      5 
      6  var storage = getCacheStorage("disk");
      7  storage.asyncDoomURI(
      8    createURI("http://non-existing/"),
      9    "",
     10    new EvictionCallback(false, function () {
     11      finish_cache2_test();
     12    })
     13  );
     14 
     15  do_test_pending();
     16 }