Bug 29641. Set default content.notify.backoffcount to -1 (never). This doesn't really 'fix' the bug; however, it keeps us from getting into a situation where layout gets too much content crammed down its throat at once. r=vidur,nisheeth

This commit is contained in:
waterson%netscape.com 2000-08-18 06:33:34 +00:00
parent baab3d1f7f
commit 038c1f7d4b
2 changed files with 2 additions and 2 deletions

View File

@ -2264,7 +2264,7 @@ HTMLContentSink::Init(nsIDocument* aDoc,
mNotifyOnTimer = PR_TRUE;
prefs->GetBoolPref("content.notify.ontimer", &mNotifyOnTimer);
mBackoffCount = 3;
mBackoffCount = -1; // never
prefs->GetIntPref("content.notify.backoffcount", &mBackoffCount);
mNotificationInterval = 1000000;

View File

@ -2264,7 +2264,7 @@ HTMLContentSink::Init(nsIDocument* aDoc,
mNotifyOnTimer = PR_TRUE;
prefs->GetBoolPref("content.notify.ontimer", &mNotifyOnTimer);
mBackoffCount = 3;
mBackoffCount = -1; // never
prefs->GetIntPref("content.notify.backoffcount", &mBackoffCount);
mNotificationInterval = 1000000;