Fix for bug 56062. Back/forward doesn't work when first page is a frameset page. r=adamlock, sr=mscott

This commit is contained in:
radha%netscape.com 2001-05-18 21:46:59 +00:00
Родитель b952418438
Коммит 941db612a8
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -1129,6 +1129,10 @@ nsDocLoaderImpl::FireOnLocationChange(nsIWebProgress* aWebProgress,
}
mListenerList->Compact();
// Pass the notification up to the parent...
if (mParent) {
mParent->FireOnLocationChange(aWebProgress, aRequest, aUri);
}
return NS_OK;
}