mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-01 13:28:39 +09:00
13 lines
255 B
JavaScript
13 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();
|
|
}
|