Use the owner document when compiling event handlers. Bug 289456, r+sr=jst,

a=dbaron


git-svn-id: svn://10.0.0.236/trunk@171910 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzbarsky%mit.edu 2005-04-09 17:32:25 +00:00
parent f0a2c1b960
commit 9fdf2e8d89

View File

@ -682,7 +682,7 @@ nsEventListenerManager::AddEventListener(nsIDOMEventListener *aListener,
nsCOMPtr<nsIDocument> document;
nsCOMPtr<nsIContent> content(do_QueryInterface(mTarget));
if (content)
document = content->GetDocument();
document = content->GetOwnerDoc();
else document = do_QueryInterface(mTarget);
if (document)
global = document->GetScriptGlobalObject();
@ -1144,7 +1144,7 @@ nsEventListenerManager::AddScriptEventListener(nsISupports *aObject,
if (content) {
// Try to get context from doc
doc = content->GetDocument();
doc = content->GetOwnerDoc();
nsIScriptGlobalObject *global;
if (doc && (global = doc->GetScriptGlobalObject())) {
@ -1452,7 +1452,7 @@ nsEventListenerManager::CompileEventHandlerInternal(nsIScriptContext *aContext,
if (!doc) {
nsCOMPtr<nsIContent> content = do_QueryInterface(aCurrentTarget);
if (content)
doc = content->GetDocument();
doc = content->GetOwnerDoc();
}
if (doc) {
nsIURI *uri = doc->GetDocumentURI();