[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-10851-g50815da

andersca at apple.com andersca at apple.com
Wed Dec 22 18:03:37 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ef07f295425ae059fee26b6233194ad4fb6c677d
Author: andersca at apple.com <andersca at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 6 19:52:52 2010 +0000

    REGRESSION: Text in Find indicator is vertically flipped
    https://bugs.webkit.org/show_bug.cgi?id=50524
    <rdar://problem/8732978>
    
    Reviewed by Dan Bernstein.
    
    Don't flip the graphics context.
    
    * UIProcess/FindIndicator.cpp:
    (WebKit::FindIndicator::draw):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73382 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 39788c6..e5554f3 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,16 @@
+2010-12-06  Anders Carlsson  <andersca at apple.com>
+
+        Reviewed by Dan Bernstein.
+
+        REGRESSION: Text in Find indicator is vertically flipped
+        https://bugs.webkit.org/show_bug.cgi?id=50524
+        <rdar://problem/8732978>
+
+        Don't flip the graphics context.
+
+        * UIProcess/FindIndicator.cpp:
+        (WebKit::FindIndicator::draw):
+
 2010-12-03  Anders Carlsson  <andersca at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebKit2/UIProcess/FindIndicator.cpp b/WebKit2/UIProcess/FindIndicator.cpp
index 1bab861..a3eb93e 100644
--- a/WebKit2/UIProcess/FindIndicator.cpp
+++ b/WebKit2/UIProcess/FindIndicator.cpp
@@ -164,8 +164,7 @@ void FindIndicator::draw(GraphicsContext& graphicsContext, const IntRect& dirtyR
         graphicsContext.restore();
 
         graphicsContext.save();
-        graphicsContext.translate(FloatSize(roundf(leftBorderThickness), roundf(topBorderThickness) + m_contentImage->bounds().height()));
-        graphicsContext.scale(FloatSize(1, -1));
+        graphicsContext.translate(FloatSize(roundf(leftBorderThickness), roundf(topBorderThickness)));
         m_contentImage->paint(graphicsContext, IntPoint(0, 0), m_contentImage->bounds());
         graphicsContext.restore();
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list