Bug 838547 - We are only interested to the pagehide event from the root document. r=smaug

This commit is contained in:
Kan-Ru Chen (陳侃如) 2013-03-07 08:35:38 -05:00
Родитель bebe698580
Коммит 756ad8cb13
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -264,9 +264,14 @@ let FormAssistant = {
this.showKeyboard(target);
break;
case "pagehide":
// We are only interested to the pagehide event from the root document.
if (target && target != content.document) {
break;
}
// fall through
case "blur":
case "submit":
case "pagehide":
if (this.focusedElement)
this.hideKeyboard();
break;