Fixed bug #2885 - the linebreaker couldn't handle a special case...

This commit is contained in:
kipp%netscape.com 1999-02-24 05:24:06 +00:00
Родитель cec1aad037
Коммит 50a388ca59
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -2123,7 +2123,8 @@ TextFrame::Reflow(nsIPresContext& aPresContext,
#endif
lineLayout.ForgetWordFrame(this);
}
else {
if (!lineLayout.InWord()) {
// There is no currently active word. This frame may contain the
// start of one.
if (endsInWhitespace) {

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

@ -2123,7 +2123,8 @@ TextFrame::Reflow(nsIPresContext& aPresContext,
#endif
lineLayout.ForgetWordFrame(this);
}
else {
if (!lineLayout.InWord()) {
// There is no currently active word. This frame may contain the
// start of one.
if (endsInWhitespace) {