blob: 83829c631e794e5a8d420c5b922c61cc83b7e384 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
"use strict";
function run_test() {
do_get_profile();
Services.cache2.clear();
var storage = getCacheStorage("disk");
storage.asyncVisitStorage(
new VisitCallback(0, 0, [], function () {
finish_cache2_test();
}),
true
);
do_test_pending();
}
|