Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: netwerk/test/unit/xpcshell.toml
"use strict";
function run_test() {
do_get_profile();
var mc = new MultipleCallbacks(2, function () {
var storage = getCacheStorage("disk", Services.loadContextInfo.default);
storage.asyncVisitStorage(
storage = getCacheStorage("disk", Services.loadContextInfo.anonymous);
storage.asyncVisitStorage(
finish_cache2_test();
}),
true
);
}),
true
);
});
asyncOpenCacheEntry(
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
Services.loadContextInfo.default,
new OpenCallback(NEW | WAITFORWRITE, "an2", "an2", function () {
mc.fired();
})
);
asyncOpenCacheEntry(
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
Services.loadContextInfo.anonymous,
new OpenCallback(NEW | WAITFORWRITE, "an2", "an2", function () {
mc.fired();
})
);
do_test_pending();
}