From 3885b8f0b0c7c1369b4715f89ccdeaa9d11ff4e3 Mon Sep 17 00:00:00 2001 From: "kipp%netscape.com" Date: Fri, 25 Sep 1998 17:30:59 +0000 Subject: [PATCH] Don't block incremental loading reflows because of mInMonolithicContainer (it was necessary early on, now it isn't) --- content/html/document/src/nsHTMLContentSink.cpp | 2 +- layout/html/document/src/nsHTMLContentSink.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/html/document/src/nsHTMLContentSink.cpp b/content/html/document/src/nsHTMLContentSink.cpp index 03245295adc1..b5d5476b6ed6 100644 --- a/content/html/document/src/nsHTMLContentSink.cpp +++ b/content/html/document/src/nsHTMLContentSink.cpp @@ -1342,7 +1342,7 @@ HTMLContentSink::WillInterrupt() { SINK_TRACE(SINK_TRACE_CALLS, ("HTMLContentSink::WillInterrupt: this=%p", this)); - if (mDirty && !mInMonolithicContainer) { + if (mDirty) { if (nsnull != mBody) { mDocument->ContentAppended(mBody, mBodyChildCount); mBody->ChildCount(mBodyChildCount); diff --git a/layout/html/document/src/nsHTMLContentSink.cpp b/layout/html/document/src/nsHTMLContentSink.cpp index 03245295adc1..b5d5476b6ed6 100644 --- a/layout/html/document/src/nsHTMLContentSink.cpp +++ b/layout/html/document/src/nsHTMLContentSink.cpp @@ -1342,7 +1342,7 @@ HTMLContentSink::WillInterrupt() { SINK_TRACE(SINK_TRACE_CALLS, ("HTMLContentSink::WillInterrupt: this=%p", this)); - if (mDirty && !mInMonolithicContainer) { + if (mDirty) { if (nsnull != mBody) { mDocument->ContentAppended(mBody, mBodyChildCount); mBody->ChildCount(mBodyChildCount);