зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1241719
- Fix intermittent browser_ext_tabs_onUpdated.js r=kmag
MozReview-Commit-ID: LhHS6F0YFUJ --HG-- extra : rebase_source : b174f162c4a51868748420e39e1a7c85d789a96a
This commit is contained in:
Родитель
591354c5e5
Коммит
9b30640835
|
@ -30,7 +30,11 @@ add_task(function* () {
|
|||
let collectedSequence = [];
|
||||
|
||||
browser.tabs.onUpdated.addListener(function(tabId, updatedInfo) {
|
||||
collectedSequence.push(updatedInfo);
|
||||
// onUpdated also fires with updatedInfo.faviconUrl, so explicitly
|
||||
// check for updatedInfo.status before recording the event.
|
||||
if ("status" in updatedInfo) {
|
||||
collectedSequence.push(updatedInfo);
|
||||
}
|
||||
});
|
||||
|
||||
browser.runtime.onMessage.addListener(function() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче