Bug 804827 - bustage fix for Cu.isDeadWrapper(null) r=djf a=sicking

This commit is contained in:
Tim Taubert 2012-10-25 01:30:14 +02:00
Родитель f1d1a100c5
Коммит bb8e31b676
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -44,8 +44,9 @@ let FormAssistant = {
_focusedElement: null,
get focusedElement() {
if (Cu.isDeadWrapper(this._focusedElement))
if (this._focusedElement && Cu.isDeadWrapper(this._focusedElement))
this._focusedElement = null;
return this._focusedElement;
},