Bug 597676. If there's no rootPresContext, we should never detect DOM modification. Makes printing paint again. r=dbaron a=blocking2.0:beta7

This commit is contained in:
L. David Baron 2010-09-18 11:43:17 -07:00
Родитель 8815a5cdc0
Коммит 00fa3dcc1b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1696,7 +1696,7 @@ FrameLayerBuilder::DrawThebesLayer(ThebesLayer* aLayer,
PRBool
FrameLayerBuilder::CheckDOMModified()
{
if (mRootPresContext &&
if (!mRootPresContext ||
mInitialDOMGeneration == mRootPresContext->GetDOMGeneration())
return PR_FALSE;
if (mDetectedDOMModification) {