[SCM] WebKit Debian packaging branch, debian/experimental,	updated. debian/1.3.8-1-1049-g2e11a8e
    mrobinson at webkit.org 
    mrobinson at webkit.org
       
    Fri Jan 21 14:43:47 UTC 2011
    
    
  
The following commit has been merged in the debian/experimental branch:
commit c246cad1babb3913c80a3518fed7518da9041309
Author: mrobinson at webkit.org <mrobinson at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 28 00:17:25 2010 +0000
    2010-12-27  Martin Robinson  <mrobinson at igalia.com>
    
            Reviewed by Daniel Bates.
    
            [Cairo] fast/canvas/canvas-save-restore-with-path.html fails with some versions of Cairo
            https://bugs.webkit.org/show_bug.cgi?id=51655
    
            Increase the precision of pi used in this test case. It appears that
            some Cairo versions or processors are sensitive to rounding errors here.
    
            * fast/canvas/canvas-save-restore-with-path.js: Increase pi precision.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74699 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 09a3e6e..2c0dcce 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-12-27  Martin Robinson  <mrobinson at igalia.com>
+
+        Reviewed by Daniel Bates.
+
+        [Cairo] fast/canvas/canvas-save-restore-with-path.html fails with some versions of Cairo
+        https://bugs.webkit.org/show_bug.cgi?id=51655
+
+        Increase the precision of pi used in this test case. It appears that
+        some Cairo versions or processors are sensitive to rounding errors here.
+
+        * fast/canvas/canvas-save-restore-with-path.js: Increase pi precision.
+
 2010-12-27  Kenji Imasaki  <imasaki at chromium.org>
 
         Reviewed by David Levin.
diff --git a/LayoutTests/fast/canvas/canvas-save-restore-with-path.js b/LayoutTests/fast/canvas/canvas-save-restore-with-path.js
index b1432b9..a238dfc 100644
--- a/LayoutTests/fast/canvas/canvas-save-restore-with-path.js
+++ b/LayoutTests/fast/canvas/canvas-save-restore-with-path.js
@@ -49,7 +49,7 @@ pixelShouldBe(75, 50, [255, 0, 0, 255]);
 // Test rotate
 context.beginPath();
 context.save();
-context.rotate(90/180 * 3.1415);
+context.rotate(90/180 * 3.14159);
 context.rect(50, -50, 50, 50);
 context.restore();
 context.fill();
-- 
WebKit Debian packaging
    
    
More information about the Pkg-webkit-commits
mailing list