Changeset 31328 in webkit
- Timestamp:
- Mar 26, 2008, 1:53:07 PM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r31327 r31328 1 2008-03-26 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Anders Carlsson. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=18104 6 REGRESSION: LEAK: 2 InlineBox in editing/inserting/12882.html 7 8 * rendering/bidi.cpp: 9 (WebCore::RenderBlock::layoutInlineChildren): When deciding to ditch 10 old clean lines (due to changed or newly-added floats), keep the 11 reference to those lines so they can be properly deleted in the end, 12 and use a separate flag to signal that no matching should be attempted. 13 1 14 2008-03-26 Mark Rowe <mrowe@apple.com> 2 15 -
trunk/WebCore/rendering/bidi.cpp
r31227 r31328 874 874 875 875 bool endLineMatched = false; 876 bool checkForEndLineMatch = endLine; 876 877 877 878 while (!end.atEnd()) { 878 879 // FIXME: Is this check necessary before the first iteration or can it be moved to the end? 879 if ( endLine&& (endLineMatched = matchedEndLine(start, cleanLineStart, cleanLineBidiStatus, endLine, endLineYPos, repaintBottom, repaintTop)))880 if (checkForEndLineMatch && (endLineMatched = matchedEndLine(start, cleanLineStart, cleanLineBidiStatus, endLine, endLineYPos, repaintBottom, repaintTop))) 880 881 break; 881 882 … … 952 953 // If a float's geometry has changed, give up on syncing with clean lines. 953 954 if (floats[floatIndex].rect != IntRect(f->m_left, f->m_top, f->m_width, f->m_bottom - f->m_top)) 954 endLine = 0;955 checkForEndLineMatch = false; 955 956 floatIndex++; 956 957 }
Note:
See TracChangeset
for help on using the changeset viewer.