mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 05:13:07 +09:00
17 lines
281 B
JavaScript
17 lines
281 B
JavaScript
function run_test()
|
|
{
|
|
do_get_profile();
|
|
|
|
var svc = get_cache_service();
|
|
svc.clear();
|
|
|
|
var storage = getCacheStorage("disk");
|
|
storage.asyncVisitStorage(
|
|
new VisitCallback(0, 0, [], function() {
|
|
finish_cache2_test();
|
|
}),
|
|
true
|
|
);
|
|
|
|
do_test_pending();
|
|
}
|