Changeset 76202 in webkit


Ignore:
Timestamp:
Jan 19, 2011 8:24:05 PM (13 years ago)
Author:
dimich@chromium.org
Message:

2011-01-19 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r76187.
http://trac.webkit.org/changeset/76187
https://bugs.webkit.org/show_bug.cgi?id=52778

Broke caret-showing tests on SnowLeopard and Chromium
(Requested by dimich on #webkit).

  • editing/selection/caret-painting-in-overflowing-autowrap-content.html: Removed.
  • editing/selection/resources/iframe-positioning-caret-at-end.html: Removed.
  • platform/mac/editing/selection/caret-painting-in-overflowing-autowrap-content-expected.checksum: Removed.
  • platform/mac/editing/selection/caret-painting-in-overflowing-autowrap-content-expected.png: Removed.
  • platform/mac/editing/selection/caret-painting-in-overflowing-autowrap-content-expected.txt: Removed.

2011-01-19 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r76187.
http://trac.webkit.org/changeset/76187
https://bugs.webkit.org/show_bug.cgi?id=52778

Broke caret-showing tests on SnowLeopard and Chromium
(Requested by dimich on #webkit).

  • rendering/RenderText.cpp: (WebCore::RenderText::localCaretRect):
Location:
trunk
Files:
5 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r76201 r76202  
     12011-01-19  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r76187.
     4        http://trac.webkit.org/changeset/76187
     5        https://bugs.webkit.org/show_bug.cgi?id=52778
     6
     7        Broke caret-showing tests on SnowLeopard and Chromium
     8        (Requested by dimich on #webkit).
     9
     10        * editing/selection/caret-painting-in-overflowing-autowrap-content.html: Removed.
     11        * editing/selection/resources/iframe-positioning-caret-at-end.html: Removed.
     12        * platform/mac/editing/selection/caret-painting-in-overflowing-autowrap-content-expected.checksum: Removed.
     13        * platform/mac/editing/selection/caret-painting-in-overflowing-autowrap-content-expected.png: Removed.
     14        * platform/mac/editing/selection/caret-painting-in-overflowing-autowrap-content-expected.txt: Removed.
     15
    1162011-01-19  Yuzo Fujishima  <yuzo@google.com>
    217
  • trunk/Source/WebCore/ChangeLog

    r76201 r76202  
     12011-01-19  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r76187.
     4        http://trac.webkit.org/changeset/76187
     5        https://bugs.webkit.org/show_bug.cgi?id=52778
     6
     7        Broke caret-showing tests on SnowLeopard and Chromium
     8        (Requested by dimich on #webkit).
     9
     10        * rendering/RenderText.cpp:
     11        (WebCore::RenderText::localCaretRect):
     12
    1132011-01-19  Yuzo Fujishima  <yuzo@google.com>
    214
  • trunk/Source/WebCore/rendering/RenderText.cpp

    r76187 r76202  
    511511    int rightEdge;
    512512    if (style()->autoWrap()) {
    513         leftEdge = cb->logicalLeftLayoutOverflow();
    514         rightEdge = cb->logicalRightLayoutOverflow();
     513        leftEdge = cb->logicalLeft();
     514        rightEdge = cb->logicalRight();
    515515    } else {
    516         leftEdge = min(cb->logicalLeftLayoutOverflow(), rootLeft);
    517         rightEdge = max(cb->logicalRightLayoutOverflow(), rootRight);
     516        leftEdge = min(cb->logicalLeft(), rootLeft);
     517        rightEdge = max(cb->logicalRight(), rootRight);
    518518    }
    519519
Note: See TracChangeset for help on using the changeset viewer.