Clear first-letter ok style at the right time

This commit is contained in:
kipp%netscape.com 1999-04-29 00:16:09 +00:00
Родитель 457a1555e7
Коммит e83d736b28
2 изменённых файлов: 16 добавлений и 0 удалений

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

@ -857,6 +857,14 @@ nsLineLayout::ReflowFrame(nsIFrame* aFrame,
else {
AddFloater((nsPlaceholderFrame*)aFrame);
}
nsIAtom* oofft;
outOfFlowFrame->GetFrameType(&oofft);
if (oofft) {
if (oofft == nsLayoutAtoms::letterFrame) {
mFirstLetterStyleOK = PR_FALSE;
}
NS_RELEASE(oofft);
}
}
}
}

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

@ -857,6 +857,14 @@ nsLineLayout::ReflowFrame(nsIFrame* aFrame,
else {
AddFloater((nsPlaceholderFrame*)aFrame);
}
nsIAtom* oofft;
outOfFlowFrame->GetFrameType(&oofft);
if (oofft) {
if (oofft == nsLayoutAtoms::letterFrame) {
mFirstLetterStyleOK = PR_FALSE;
}
NS_RELEASE(oofft);
}
}
}
}