mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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();
|
|
}
|