Bug 1055499 - StyleEditor: Properly wait for the toolbox to be destroyed before ending test run and causing windows to leak. r=harth

This commit is contained in:
Sami Jaktholm 2014-08-20 02:02:00 -04:00
Родитель 2551a804af
Коммит 9c760a9aca
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -53,10 +53,13 @@ function addTab(url) {
return def.promise;
}
function cleanup()
function* cleanup()
{
gPanelWindow = null;
while (gBrowser.tabs.length > 1) {
let target = TargetFactory.forTab(gBrowser.selectedTab);
yield gDevTools.closeToolbox(target);
gBrowser.removeCurrentTab();
}
}