Backed out changeset 7a1d15397ad9 (bug 1720184) for causing xpcshell failures on test_pause_exceptions-04.js. CLOSED TREE

This commit is contained in:
Iulian Moraru 2021-07-14 02:40:04 +03:00
Родитель c61a06c5db
Коммит cab1e7c3c1
1 изменённых файлов: 0 добавлений и 5 удалений

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

@ -712,11 +712,6 @@ class TargetCommand extends EventEmitter {
const fronts = [];
const targets = this.getAllTargets(targetTypes);
for (const target of targets) {
// For still-attaching worker targets, the threadFront may not yet be available,
// whereas TargetMixin.getFront will throw if the actorID isn't available in targetForm.
if (frontType == "thread" && !target.targetForm.threadFront) {
continue;
}
const front = await target.getFront(frontType);
fronts.push(front);
}