Changeset 31328 in webkit


Ignore:
Timestamp:
Mar 26, 2008, 1:53:07 PM (17 years ago)
Author:
mitz@apple.com
Message:

2008-03-26 Dan Bernstein <mitz@apple.com>

Reviewed by Anders Carlsson.

  • rendering/bidi.cpp: (WebCore::RenderBlock::layoutInlineChildren): When deciding to ditch old clean lines (due to changed or newly-added floats), keep the reference to those lines so they can be properly deleted in the end, and use a separate flag to signal that no matching should be attempted.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r31327 r31328  
     12008-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
    1142008-03-26  Mark Rowe  <mrowe@apple.com>
    215
  • trunk/WebCore/rendering/bidi.cpp

    r31227 r31328  
    874874
    875875        bool endLineMatched = false;
     876        bool checkForEndLineMatch = endLine;
    876877
    877878        while (!end.atEnd()) {
    878879            // 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)))
    880881                break;
    881882
     
    952953                    // If a float's geometry has changed, give up on syncing with clean lines.
    953954                    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;
    955956                    floatIndex++;
    956957                }
Note: See TracChangeset for help on using the changeset viewer.