mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
the reopened bug 18553 - clear event handlers when first
document is loaded in a window. r=heikki, sr=vidur
This commit is contained in:
parent
253004d746
commit
11fff7e26f
@ -376,6 +376,11 @@ NS_IMETHODIMP GlobalWindowImpl::SetNewDocument(nsIDOMDocument* aDocument)
|
||||
doc = nsnull; // Forces release now
|
||||
}
|
||||
|
||||
if (mListenerManager) {
|
||||
mListenerManager->RemoveAllListeners(PR_FALSE);
|
||||
mListenerManager = nsnull;
|
||||
}
|
||||
|
||||
if (docURL) {
|
||||
nsXPIDLCString url;
|
||||
|
||||
@ -390,11 +395,6 @@ NS_IMETHODIMP GlobalWindowImpl::SetNewDocument(nsIDOMDocument* aDocument)
|
||||
mSidebar = nsnull;
|
||||
}
|
||||
|
||||
if (mListenerManager) {
|
||||
mListenerManager->RemoveAllListeners(PR_FALSE);
|
||||
mListenerManager = nsnull;
|
||||
}
|
||||
|
||||
if (mContext && mJSObject) {
|
||||
// if (mContext && mJSObject && aDocument) {
|
||||
// not doing this unless there's a new document prevents a closed window's
|
||||
|
Loading…
x
Reference in New Issue
Block a user