зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1261509 - Guard against an undefined input field during textbox shutdown. r=enndeakin
MozReview-Commit-ID: 5jw6uM1p6T7
This commit is contained in:
Родитель
4bd42b6939
Коммит
32d821bacd
|
@ -171,8 +171,9 @@
|
|||
|
||||
<destructor>
|
||||
<![CDATA[
|
||||
if (this.inputField.value)
|
||||
this.boxObject.setProperty('value', this.inputField.value);
|
||||
var field = this.inputField;
|
||||
if (field && field.value)
|
||||
this.boxObject.setProperty('value', field.value);
|
||||
this.mInputField = null;
|
||||
]]>
|
||||
</destructor>
|
||||
|
|
Загрузка…
Ссылка в новой задаче