Changeset 80409 in webkit


Ignore:
Timestamp:
Mar 4, 2011 10:32:04 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-03-04 Mike Reed <reed@google.com>

Reviewed by Mihai Parparita.

[Chromium] fast/canvas/canvas-arc-360-winding.html fails on Linux and Windows
https://bugs.webkit.org/show_bug.cgi?id=49477

  • platform/chromium/test_expectations.txt:

2011-03-04 Mike Reed <reed@google.com>

Reviewed by Mihai Parparita.

[Chromium] fast/canvas/canvas-arc-360-winding.html fails on Linux and Windows
https://bugs.webkit.org/show_bug.cgi?id=49477

  • platform/graphics/skia/PathSkia.cpp: (WebCore::Path::addArc):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r80406 r80409  
     12011-03-04  Mike Reed  <reed@google.com>
     2
     3        Reviewed by Mihai Parparita.
     4
     5        [Chromium] fast/canvas/canvas-arc-360-winding.html fails on Linux and Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=49477
     7
     8        * platform/chromium/test_expectations.txt:
     9
    1102011-03-04  James Simonsen  <simonjam@chromium.org>
    211
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r80385 r80409  
    26222622
    26232623BUGCR61739 WIN LINUX DEBUG : animations/suspend-resume-animation-events.html = CRASH TEXT PASS
    2624 
    2625 BUGWK49477 WIN LINUX : fast/canvas/canvas-arc-360-winding.html = TEXT
    26262624
    26272625// New tests added with http://trac.webkit.org/changeset/72472 and further.
  • trunk/Source/WebCore/ChangeLog

    r80408 r80409  
     12011-03-04  Mike Reed  <reed@google.com>
     2
     3        Reviewed by Mihai Parparita.
     4
     5        [Chromium] fast/canvas/canvas-arc-360-winding.html fails on Linux and Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=49477
     7
     8        * platform/graphics/skia/PathSkia.cpp:
     9        (WebCore::Path::addArc):
     10
    1112011-03-04  Jia Pu  <jpu@apple.com>
    212
  • trunk/Source/WebCore/platform/graphics/skia/PathSkia.cpp

    r76688 r80409  
    145145        m_path->arcTo(oval, startDegrees, 0, false);
    146146        // Draw the circle.
    147         m_path->addOval(oval);
     147        m_path->addOval(oval, anticlockwise ?
     148            SkPath::kCCW_Direction : SkPath::kCW_Direction);
    148149        // Force a moveTo the end position.
    149150        m_path->arcTo(oval, startDegrees + sweepDegrees, 0, true);
Note: See TracChangeset for help on using the changeset viewer.