Bug 1572227 - Warp should wait for pause events. r=bhackett

Differential Revision: https://phabricator.services.mozilla.com/D41085

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jason Laster 2019-08-07 21:21:53 +00:00
Родитель 036b82a357
Коммит c6612d3e41
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -185,7 +185,9 @@ class ThreadFront extends FrontClassWithSpec(threadSpec) {
if (this.paused) {
return warp();
}
return this.interrupt().then(warp);
this.interrupt();
return this.once("paused", warp);
}
/**