moebius#30 and #37: ForgetAboutSite.jsm - promise - serialize vs. parallel + a comment

https://github.com/MoonchildProductions/moebius/pull/30
https://github.com/MoonchildProductions/moebius/pull/37
This commit is contained in:
janekptacijarabaci 2018-04-24 19:23:04 +02:00 committed by Roy Tam
commit 82205cf721
7 changed files with 179 additions and 156 deletions

View file

@ -67,9 +67,10 @@ function test2()
function test3()
{
// Remove database from domain 2
ForgetAboutSite.removeDataFromDomain(domains[1]);
setPermission(testPageURL4, "indexedDB");
executeSoon(test4);
ForgetAboutSite.removeDataFromDomain(domains[1]).then(() => {
setPermission(testPageURL4, "indexedDB");
executeSoon(test4);
});
}
function test4()