зеркало из https://github.com/mozilla/gecko-dev.git
Bug 804827 - bustage fix for Cu.isDeadWrapper(null) r=djf a=sicking
This commit is contained in:
Родитель
f1d1a100c5
Коммит
bb8e31b676
|
@ -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;
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче