Changeset 142051 in webkit
- Timestamp:
- Feb 6, 2013, 4:28:13 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r142050 r142051 1 2013-02-06 Dirk Schulze <dschulze@adobe.com> 2 3 Context's currentPath should check for passed type 4 https://bugs.webkit.org/show_bug.cgi?id=109097 5 6 Reviewed by Dean Jackson. 7 8 Add checks with different data types as value for canvas.currentPath. 9 10 * fast/canvas/canvas-currentPath-crash-expected.txt: Added. 11 * fast/canvas/canvas-currentPath-crash.html: Added. 12 * fast/canvas/script-tests/canvas-currentPath-crash.js: Added. 13 * platform/chromium/TestExpectations: 14 * platform/efl/TestExpectations: 15 * platform/gtk/TestExpectations: 16 * platform/mac/TestExpectations: 17 * platform/qt/TestExpectations: 18 1 19 2013-02-06 Stephen Chenney <schenney@chromium.org> 2 20 -
trunk/LayoutTests/platform/chromium/TestExpectations
r142018 r142051 4232 4232 webkit.org/b/107508 platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance.html [ ImageOnlyFailure Pass ] 4233 4233 4234 # Rebaseline after currentPath 4235 webkit.org/b/108246 fast/canvas/canvas-currentPath.html [ Failure ] 4236 webkit.org/b/108246 platform/chromium/virtual/gpu/fast/canvas/canvas-currentPath.html [ Failure ] 4237 webkit.org/b/108246 fast/canvas/canvas-currentPath-crash.html [ Failure ] 4238 webkit.org/b/108246 platform/chromium/virtual/gpu/fast/canvas/canvas-currentPath-crash.html [ Failure ] 4239 4234 4240 # Broken by Skia flag changes in r139445 4235 4241 crbug.com/169550 [ Debug ] fast/lists/big-list-marker.html [ Crash ] -
trunk/LayoutTests/platform/efl/TestExpectations
r141714 r142051 1824 1824 webkit.org/b/108508 fast/canvas/canvas-path-constructors.html [ Failure ] 1825 1825 webkit.org/b/108508 fast/canvas/canvas-currentPath.html [ Failure ] 1826 webkit.org/b/108508 fast/canvas/canvas-currentPath-crash.html [ Failure ] 1826 1827 1827 1828 # Test fails on JSC platforms due to GC timing problems -
trunk/LayoutTests/platform/gtk/TestExpectations
r142034 r142051 1392 1392 webkit.org/b/108508 fast/canvas/canvas-currentPath.html [ Failure ] 1393 1393 webkit.org/b/108508 fast/canvas/canvas-path-constructors.html [ Failure ] 1394 webkit.org/b/108508 fast/canvas/canvas-currentPath-crash.html [ Failure ] 1394 1395 1395 1396 # volume is reset when mediaelement.src is modified -
trunk/LayoutTests/platform/mac/TestExpectations
r142024 r142051 148 148 fast/canvas/canvas-currentPath.html 149 149 fast/canvas/canvas-path-constructors.html 150 fast/canvas/canvas-currentPath-crash.html 150 151 151 152 # This port doesn't support DeviceMotion or DeviceOrientation. -
trunk/LayoutTests/platform/qt/TestExpectations
r141993 r142051 94 94 fast/canvas/canvas-currentPath.html 95 95 fast/canvas/canvas-path-constructors.html 96 fast/canvas/canvas-currentPath-crash.html 96 97 97 98 # ENABLE(INPUT_SPEECH) is disabled. -
trunk/Source/WebCore/ChangeLog
r142049 r142051 1 2013-02-06 Dirk Schulze <dschulze@adobe.com> 2 3 Context's currentPath should check for passed type 4 https://bugs.webkit.org/show_bug.cgi?id=109097 5 6 Reviewed by Dean Jackson. 7 8 Add check for passed pointer and return earlier. 9 10 Test: fast/canvas/canvas-currentPath-crash.html 11 12 * html/canvas/CanvasRenderingContext2D.cpp: 13 (WebCore::CanvasRenderingContext2D::setCurrentPath): 14 1 15 2013-02-06 Rafael Weinstein <rafaelw@chromium.org> 2 16 -
trunk/Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp
r141612 r142051 868 868 void CanvasRenderingContext2D::setCurrentPath(DOMPath* path) 869 869 { 870 if (!path) 871 return; 870 872 m_path = path->path(); 871 873 }
Note:
See TracChangeset
for help on using the changeset viewer.