зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1381023: Follow-up: Fix xpcshell failure.
MozReview-Commit-ID: BB8ItETtRMb --HG-- extra : rebase_source : 81885a8417d83dcae6b0a3896483f0a60e56cb8b
This commit is contained in:
Родитель
4d50b6bd73
Коммит
8cbd7a12c9
|
@ -245,11 +245,13 @@ ProxyMessenger = {
|
|||
result = res;
|
||||
}
|
||||
} catch (e) {
|
||||
if (e.result !== MessageChannel.RESULT_NO_HANDLER &&
|
||||
e.result !== MessageChannel.RESULT_NO_RESPONSE) {
|
||||
if (e.result === MessageChannel.RESULT_NO_RESPONSE) {
|
||||
// Ignore.
|
||||
} else if (e.result === MessageChannel.RESULT_NO_HANDLER) {
|
||||
failures++;
|
||||
} else {
|
||||
throw e;
|
||||
}
|
||||
failures++;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче