This commit is contained in:
Mats Palmgren 2012-07-26 00:39:14 +02:00
Родитель 8d6dc77a2f
Коммит 18314255da
1 изменённых файлов: 2 добавлений и 5 удалений

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

@ -7150,12 +7150,9 @@ nsTextFrame::SetLength(PRInt32 aLength, nsLineLayout* aLineLayout,
bool
nsTextFrame::IsFloatingFirstLetterChild() const
{
if (!(GetStateBits() & TEXT_FIRST_LETTER))
return false;
nsIFrame* frame = GetParent();
if (!frame || frame->GetType() != nsGkAtoms::letterFrame)
return false;
return frame->GetStyleDisplay()->IsFloating();
return frame && frame->GetStyleDisplay()->IsFloating() &&
frame->GetType() == nsGkAtoms::letterFrame;
}
struct NewlineProperty {