Use correct reflow-state to find the containing-block's width for text-indent (bug #1048)

This commit is contained in:
kipp%netscape.com 1998-11-23 21:11:19 +00:00
Родитель 3f1382e38f
Коммит c6708dec6e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -358,7 +358,7 @@ nsInlineReflow::ApplyTopLeftMargins()
}
else if (eStyleUnit_Percent == unit) {
nscoord width =
nsHTMLReflowState::GetContainingBlockContentWidth(&mOuterReflowState);
nsHTMLReflowState::GetContainingBlockContentWidth(mOuterReflowState.parentReflowState);
if (0 != width) {
indent = nscoord(text->mTextIndent.GetPercentValue() * width);
}