Bug 751422, fix regression from GetOwnerDoc() -> OwnerDoc(), r=khuey

This commit is contained in:
Olli Pettay 2012-05-04 17:41:27 +03:00
Родитель 3bb38b2e4a
Коммит 6656de0df2
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -563,7 +563,8 @@ nsEventListenerManager::AddScriptEventListener(nsIAtom *aName,
// Try to get context from doc
// XXX sXBL/XBL2 issue -- do we really want the owner here? What
// if that's the XBL document?
global = node->OwnerDoc()->GetScriptGlobalObject();
doc = node->OwnerDoc();
global = doc->GetScriptGlobalObject();
} else {
nsCOMPtr<nsPIDOMWindow> win(do_QueryInterface(mTarget));
if (win) {