Changeset 128411 in webkit
- Timestamp:
- Sep 13, 2012, 12:16:08 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r128407 r128411 1 2012-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 1 15 2012-09-12 Alexander Pavlov <apavlov@chromium.org> 2 16 -
trunk/Source/WebCore/bindings/js/JSCanvasRenderingContextCustom.cpp
r100006 r128411 54 54 { 55 55 if (!object) 56 return js Undefined();56 return jsNull(); 57 57 58 58 #if ENABLE(WEBGL)
Note:
See TracChangeset
for help on using the changeset viewer.