Revoke presentation restore events even if we just get a network stop. Bug 306283, r+sr=biesi

This commit is contained in:
bzbarsky@mit.edu 2007-08-31 20:21:22 -07:00
Родитель 707aa8094f
Коммит 4081d8d1e8
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -3223,10 +3223,10 @@ nsDocShell::Reload(PRUint32 aReloadFlags)
NS_IMETHODIMP
nsDocShell::Stop(PRUint32 aStopFlags)
{
if (nsIWebNavigation::STOP_CONTENT & aStopFlags) {
// Revoke any pending event related to content viewer restoration
mRestorePresentationEvent.Revoke();
// Revoke any pending event related to content viewer restoration
mRestorePresentationEvent.Revoke();
if (nsIWebNavigation::STOP_CONTENT & aStopFlags) {
// Stop the document loading
if (mContentViewer)
mContentViewer->Stop();