Changeset 31213 in webkit


Ignore:
Timestamp:
Mar 21, 2008, 10:17:01 AM (17 years ago)
Author:
mitz@apple.com
Message:

WebCore:

Reviewed by Adele Peterson.

Test: fast/block/float/br-with-clear.html

  • rendering/bidi.cpp: (WebCore::RenderBlock::layoutInlineChildren): Fixed the logic for the very special case of an all-lines-clean block that ends with a float- clearing <br> by looking for the <br> at the end of the line rather than at its beginning.

LayoutTests:

Reviewed by Adele Peterson.

  • fast/block/float/br-with-clear.html: Added.
  • platform/mac/fast/block/float/br-with-clear-expected.checksum: Added.
  • platform/mac/fast/block/float/br-with-clear-expected.png: Added.
  • platform/mac/fast/block/float/br-with-clear-expected.txt: Added.
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r31207 r31213  
     12008-03-21  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Adele Peterson.
     4
     5        - test for http://bugs.webkit.org/show_bug.cgi?id=17966
     6          REGRESSION (r31114-r31132): Clearing via br behaves unpredictably
     7
     8        * fast/block/float/br-with-clear.html: Added.
     9        * platform/mac/fast/block/float/br-with-clear-expected.checksum: Added.
     10        * platform/mac/fast/block/float/br-with-clear-expected.png: Added.
     11        * platform/mac/fast/block/float/br-with-clear-expected.txt: Added.
     12
    1132008-03-21  Dan Bernstein  <mitz@apple.com>
    214
  • trunk/WebCore/ChangeLog

    r31210 r31213  
     12008-03-21  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Adele Peterson.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=17966
     6          REGRESSION (r31114-r31132): Clearing via br behaves unpredictably
     7
     8        Test: fast/block/float/br-with-clear.html
     9
     10        * rendering/bidi.cpp:
     11        (WebCore::RenderBlock::layoutInlineChildren): Fixed the logic for the
     12        very special case of an all-lines-clean block that ends with a float-
     13        clearing <br> by looking for the <br> at the end of the line rather
     14        than at its beginning.
     15
    1162008-03-21  Adam Roben  <aroben@apple.com>
    217
  • trunk/WebCore/rendering/bidi.cpp

    r31206 r31213  
    870870        BidiIterator end = start.position();
    871871
    872         if (!fullLayout && end.atEnd() && lastRootBox() && lastRootBox()->firstChild()->object()->isBR() && lastRootBox()->object()->firstChild()->style()->clear() != CNONE)
    873             newLine(lastRootBox()->object()->firstChild()->style()->clear());
     872        if (!fullLayout && end.atEnd() && lastRootBox() && lastRootBox()->lastChild()->object()->isBR() && lastRootBox()->object()->lastChild()->style()->clear() != CNONE)
     873            newLine(lastRootBox()->object()->lastChild()->style()->clear());
    874874
    875875        bool endLineMatched = false;
Note: See TracChangeset for help on using the changeset viewer.