Bug 1077652 - tabbrowser should ignore DOMTitleChanged events from browser that have no tab assigned r=dao

This commit is contained in:
Tim Taubert 2014-11-19 15:27:42 +01:00
Родитель e24b098f02
Коммит f75c147d95
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3465,7 +3465,7 @@
return;
var tab = this._getTabForContentWindow(contentWin);
if (tab.hasAttribute("pending"))
if (!tab || tab.hasAttribute("pending"))
return;
var titleChanged = this.setTabTitle(tab);