mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
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();
|
|
}
|