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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 18:22:23 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ee43bfc56b8d4df0ebe5bdf91fddd6fe3ed505ea
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 10 10:17:09 2010 +0000

    2010-12-10  François Sausset  <sausset at gmail.com>
    
            Reviewed by Eric Seidel.
    
            MathML: update baselinePosition() call in RenderMathMLBlock.cpp
            https://bugs.webkit.org/show_bug.cgi?id=50540
    
            The call of baselinePosition() is outdated: new arguments added.
    
            * mathml/RenderMathMLBlock.cpp:
            (WebCore::RenderMathMLBlock::paint):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73698 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index f634d70..645f78c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-12-10  François Sausset  <sausset at gmail.com>
+
+        Reviewed by Eric Seidel.
+
+        MathML: update baselinePosition() call in RenderMathMLBlock.cpp 
+        https://bugs.webkit.org/show_bug.cgi?id=50540
+
+        The call of baselinePosition() is outdated: new arguments added.
+
+        * mathml/RenderMathMLBlock.cpp:
+        (WebCore::RenderMathMLBlock::paint):
+
 2010-12-10  Hans Wennborg  <hans at chromium.org>
 
         Reviewed by Jeremy Orlow.
diff --git a/WebCore/mathml/RenderMathMLBlock.cpp b/WebCore/mathml/RenderMathMLBlock.cpp
index c625b1d..14e7656 100644
--- a/WebCore/mathml/RenderMathMLBlock.cpp
+++ b/WebCore/mathml/RenderMathMLBlock.cpp
@@ -102,7 +102,7 @@ void RenderMathMLBlock::paint(PaintInfo& info, int tx, int ty)
     
     info.context->drawLine(IntPoint(tx, ty + topStart), IntPoint(tx + offsetWidth(), ty + topStart));
     
-    int baseline = baselinePosition(true);
+    int baseline = baselinePosition(AlphabeticBaseline, true, HorizontalLine);
     
     info.context->setStrokeColor(Color(255, 0, 0), ColorSpaceSRGB);
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list