Changeset 65938 in webkit


Ignore:
Timestamp:
Aug 24, 2010 2:51:47 PM (14 years ago)
Author:
senorblanco@chromium.org
Message:

2010-08-24 Stephen White <senorblanco@chromium.org>

Reviewed by Dumitru Daniliuc.

Speculative fix for layout test failures on Chrome/Linux.
https://bugs.webkit.org/show_bug.cgi?id=44550

Tests fast/canvas/arc-crash.html, fast/canvas/canvas-state-intact-after-putImageData.html, and fast/canvas/toDataURL-supportedTypes.html are failing on Chrome/Linux. Can't repro the failure locally, but this fix can't hurt.

  • html/canvas/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::paintRenderingResultsToCanvas):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r65937 r65938  
     12010-08-24  Stephen White  <senorblanco@chromium.org>
     2
     3        Reviewed by Dumitru Daniliuc.
     4
     5        Speculative fix for layout test failures on Chrome/Linux.
     6        https://bugs.webkit.org/show_bug.cgi?id=44550
     7
     8        Tests fast/canvas/arc-crash.html, fast/canvas/canvas-state-intact-after-putImageData.html, and fast/canvas/toDataURL-supportedTypes.html are failing on Chrome/Linux.  Can't repro the failure locally, but this fix can't hurt.
     9
     10        * html/canvas/CanvasRenderingContext2D.cpp:
     11        (WebCore::CanvasRenderingContext2D::paintRenderingResultsToCanvas):
     12
    1132010-08-24  Dumitru Daniliuc  <dumi@chromium.org>
    214
  • trunk/WebCore/html/canvas/CanvasRenderingContext2D.cpp

    r65826 r65938  
    18751875{
    18761876#if ENABLE(ACCELERATED_2D_CANVAS)
    1877     drawingContext()->syncSoftwareCanvas();
     1877    if (GraphicsContext* c = drawingContext())
     1878        c->syncSoftwareCanvas();
    18781879#endif
    18791880}
Note: See TracChangeset for help on using the changeset viewer.