Bug 904628 - Ensure focused element is not null when calling FormAssistant.updateSelection(). r=fabrice

This commit is contained in:
Yuan Xulei 2013-08-15 12:59:28 -04:00
Родитель 9c63848eb7
Коммит fa69e24ccf
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -667,6 +667,9 @@ let FormAssistant = {
// Notify when the selection range changes
updateSelection: function fa_updateSelection() {
if (!this.focusedElement) {
return;
}
let selectionInfo = this.getSelectionInfo();
if (selectionInfo.changed) {
sendAsyncMessage("Forms:SelectionChange", this.getSelectionInfo());