Changeset 128411 in webkit


Ignore:
Timestamp:
Sep 13, 2012, 12:16:08 AM (13 years ago)
Author:
abarth@webkit.org
Message:

new test fast/canvas/canvas-css-crazy.html fails on Mac
https://bugs.webkit.org/show_bug.cgi?id=96582

Reviewed by Csaba Osztrogonác.

We represent 0 pointers with null, not undefined.

Test: fast/canvas/canvas-css-crazy.html

  • bindings/js/JSCanvasRenderingContextCustom.cpp:

(WebCore::toJS):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r128407 r128411  
     12012-09-13  Adam Barth  <abarth@webkit.org>
     2
     3        new test fast/canvas/canvas-css-crazy.html fails on Mac
     4        https://bugs.webkit.org/show_bug.cgi?id=96582
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        We represent 0 pointers with null, not undefined.
     9
     10        Test: fast/canvas/canvas-css-crazy.html
     11
     12        * bindings/js/JSCanvasRenderingContextCustom.cpp:
     13        (WebCore::toJS):
     14
    1152012-09-12  Alexander Pavlov  <apavlov@chromium.org>
    216
  • trunk/Source/WebCore/bindings/js/JSCanvasRenderingContextCustom.cpp

    r100006 r128411  
    5454{
    5555    if (!object)
    56         return jsUndefined();
     56        return jsNull();
    5757
    5858#if ENABLE(WEBGL)
Note: See TracChangeset for help on using the changeset viewer.