Don't overshoot the last sibling when iterating frames. Bug 663295 (whitespace change with correct bug number)

This commit is contained in:
Simon Montagu 2011-06-15 10:51:36 +03:00
Родитель e7e3561393
Коммит ebb4d3b611
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -805,7 +805,7 @@ nsBidiPresUtils::TraverseFrames(nsBlockFrame* aBlockFrame,
* If the frame ends before the new line, save the text and move
* into the next continuation
*/
while (end < endLine && nextSibling) {
while (end < endLine && nextSibling) {
mBuffer.Append(Substring(text, start, end - start));
AdvanceAndAppendFrame(&frame, aLineIter, &nextSibling);