Changed Reflow() to use style info from the HTML reflow state

This commit is contained in:
troy%netscape.com 1999-03-06 03:30:25 +00:00
Родитель 82c972db33
Коммит 4733b6390e
2 изменённых файлов: 2 добавлений и 6 удалений

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

@ -94,9 +94,7 @@ BRFrame::Reflow(nsIPresContext& aPresContext,
aReflowState.lineLayout->SetBRFrame(this);
// Return our reflow status
const nsStyleDisplay* display = (const nsStyleDisplay*)
mStyleContext->GetStyleData(eStyleStruct_Display);
PRUint32 breakType = display->mBreakType;
PRUint32 breakType = aReflowState.mStyleDisplay->mBreakType;
if (NS_STYLE_CLEAR_NONE == breakType) {
breakType = NS_STYLE_CLEAR_LINE;
}

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

@ -94,9 +94,7 @@ BRFrame::Reflow(nsIPresContext& aPresContext,
aReflowState.lineLayout->SetBRFrame(this);
// Return our reflow status
const nsStyleDisplay* display = (const nsStyleDisplay*)
mStyleContext->GetStyleData(eStyleStruct_Display);
PRUint32 breakType = display->mBreakType;
PRUint32 breakType = aReflowState.mStyleDisplay->mBreakType;
if (NS_STYLE_CLEAR_NONE == breakType) {
breakType = NS_STYLE_CLEAR_LINE;
}