Bug 738848 - Use selected document instead of active document in FormAssistant pageshow. r=mfinkle

This commit is contained in:
Brian Nicholson 2012-03-23 17:22:51 -07:00
Родитель f290c1604a
Коммит 6c9d5080ef
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -2938,7 +2938,8 @@ var FormAssistant = {
// Reset invalid submit state on each pageshow
case "pageshow":
let target = aEvent.originalTarget;
if (target == content.document || target.ownerDocument == content.document)
let selectedDocument = BrowserApp.selectedBrowser.contentDocument;
if (target == selectedDocument || target.ownerDocument == selectedDocument)
this._invalidSubmit = false;
}
},