Changeset 143505 in webkit
- Timestamp:
- Feb 20, 2013, 2:14:04 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r143345 r143505 1 2013-02-20 Dirk Schulze <krit@webkit.org> 2 3 Enable CANVAS_PATH flag 4 https://bugs.webkit.org/show_bug.cgi?id=108508 5 6 Reviewed by Simon Fraser. 7 8 Enable CANVAS_PATH flag on trunk. 9 10 Existing tests cover the feature. 11 12 * Source/cmake/WebKitFeatures.cmake: 13 1 14 2013-02-19 Claudio Saavedra <csaavedra@igalia.com> 2 15 -
trunk/LayoutTests/ChangeLog
r143500 r143505 1 2013-02-20 Dirk Schulze <krit@webkit.org> 2 3 Enable CANVAS_PATH flag 4 https://bugs.webkit.org/show_bug.cgi?id=108508 5 6 Reviewed by Simon Fraser. 7 8 Enable CANVAS_PATH flag on trunk. 9 10 Existing tests cover the feature. 11 12 * fast/canvas/canvas-path-object-expected.txt: 13 * inspector/profiler/canvas2d/canvas2d-api-changes.html: 14 * platform/chromium/TestExpectations: 15 * platform/efl/TestExpectations: 16 * platform/gtk/TestExpectations: 17 * platform/mac/TestExpectations: 18 1 19 2013-02-20 Ian Vollick <vollick@chromium.org> 2 20 -
trunk/LayoutTests/fast/canvas/canvas-path-object-expected.txt
r140604 r143505 1 CONSOLE MESSAGE: line 5: ReferenceError: Can't find variable: Path2 1 Ensure that the constructor for Path object and dependent functions exist. 3 2 … … 6 5 7 6 PASS typeof document.getElementById is "function" 8 FAIL successfullyParsed should be true (of type boolean). Was undefined (of type undefined). 7 PASS path is an instance of Path 8 PASS typeof path.closePath is "function" 9 PASS typeof path.moveTo is "function" 10 PASS typeof path.lineTo is "function" 11 PASS typeof path.quadraticCurveTo is "function" 12 PASS typeof path.bezierCurveTo is "function" 13 PASS typeof path.arcTo is "function" 14 PASS typeof path.arc is "function" 15 PASS typeof path.rect is "function" 16 PASS successfullyParsed is true 9 17 10 18 TEST COMPLETE -
trunk/LayoutTests/inspector/profiler/canvas2d/canvas2d-api-changes.html
r141141 r143505 11 11 */ 12 12 CanvasRenderingContext2DResource.AttributeProperties = [ 13 "currentPath", 13 14 "strokeStyle", 14 15 "fillStyle", -
trunk/LayoutTests/platform/chromium/TestExpectations
r143502 r143505 4322 4322 webkit.org/b/109158 platform/chromium/fast/forms/calendar-picker/calendar-picker-appearance-ar.html [ ImageOnlyFailure Pass ] 4323 4323 4324 # Rebaseline after currentPath4325 webkit.org/b/108246 fast/canvas/canvas-currentPath.html [ Failure ]4326 webkit.org/b/108246 platform/chromium/virtual/gpu/fast/canvas/canvas-currentPath.html [ Failure ]4327 webkit.org/b/108246 fast/canvas/canvas-currentPath-crash.html [ Failure ]4328 webkit.org/b/108246 platform/chromium/virtual/gpu/fast/canvas/canvas-currentPath-crash.html [ Failure ]4329 4330 4324 # Broken by Skia flag changes in r139445 4331 4325 crbug.com/169550 [ Debug ] fast/lists/big-list-marker.html [ Crash ] … … 4349 4343 webkit.org/b/106858 [ Linux Win Debug ] scrollingcoordinator/non-fast-scrollable-region-scaled-iframe.html [ ImageOnlyFailure Pass ] 4350 4344 4351 4352 # Needs rebaseline after enabling CANVAS_PATH.4353 webkit.org/b/108508 fast/canvas/canvas-path-constructors.html [ Failure ]4354 webkit.org/b/108508 platform/chromium/virtual/gpu/fast/canvas/canvas-path-constructors.html [ Failure ]4355 webkit.org/b/108508 fast/canvas/canvas-path-object.html [ Failure ]4356 webkit.org/b/108508 platform/chromium/virtual/gpu/fast/canvas/canvas-path-object.html [ Failure ]4357 webkit.org/b/108508 inspector/profiler/canvas2d/canvas2d-api-changes.html [ Failure ]4358 4359 4345 # This is won't fix, as the debug and release versions differ. 4360 4346 -
trunk/LayoutTests/platform/efl/TestExpectations
r143458 r143505 1798 1798 inspector/editor/text-editor-smart-braces.html 1799 1799 1800 # Remove from list after enabling CANVAS_PATH1801 webkit.org/b/108508 fast/canvas/canvas-path-constructors.html [ Failure ]1802 webkit.org/b/108508 fast/canvas/canvas-currentPath.html [ Failure ]1803 1804 1800 # Test fails on JSC platforms due to GC timing problems 1805 1801 webkit.org/b/106957 svg/dom/SVGViewSpec-invalid-ref-crash.html [ Failure ] -
trunk/LayoutTests/platform/gtk/TestExpectations
r143463 r143505 1383 1383 webkit.org/b/103740 editing/selection/caret-alignment-for-vertical-text.html [ Failure ] 1384 1384 1385 # Remove from list after enabling CANVAS_PATH1386 webkit.org/b/108508 fast/canvas/canvas-currentPath.html [ Failure ]1387 webkit.org/b/108508 fast/canvas/canvas-path-constructors.html [ Failure ]1388 1389 1385 webkit.org/b/104054 svg/custom/use-href-update-crash.svg [ Failure ] 1390 1386 -
trunk/LayoutTests/platform/mac/TestExpectations
r143419 r143505 144 144 http/tests/security/cross-origin-worker-indexeddb.html 145 145 http/tests/security/no-indexeddb-from-sandbox.html 146 147 # Remove from list after enabling CANVAS_PATH148 fast/canvas/canvas-currentPath.html149 fast/canvas/canvas-path-constructors.html150 fast/canvas/canvas-currentPath-crash.html151 146 152 147 # This port doesn't support DeviceMotion or DeviceOrientation. -
trunk/Source/JavaScriptCore/ChangeLog
r143430 r143505 1 2013-02-20 Dirk Schulze <krit@webkit.org> 2 3 Enable CANVAS_PATH flag 4 https://bugs.webkit.org/show_bug.cgi?id=108508 5 6 Reviewed by Simon Fraser. 7 8 Enable CANVAS_PATH flag on trunk. 9 10 Existing tests cover the feature. 11 12 * Configurations/FeatureDefines.xcconfig: 13 1 14 2013-02-19 Mark Rowe <mrowe@apple.com> 2 15 -
trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig
r142701 r143505 35 35 ENABLE_ACCELERATED_2D_CANVAS = ; 36 36 ENABLE_BLOB = ENABLE_BLOB; 37 ENABLE_CANVAS_PATH = ;37 ENABLE_CANVAS_PATH = ENABLE_CANVAS_PATH; 38 38 ENABLE_CANVAS_PROXY = ; 39 39 ENABLE_CHANNEL_MESSAGING = ENABLE_CHANNEL_MESSAGING; -
trunk/Source/WTF/wtf/FeatureDefines.h
r143248 r143505 326 326 327 327 #if !defined(ENABLE_CANVAS_PATH) 328 #define ENABLE_CANVAS_PATH 0328 #define ENABLE_CANVAS_PATH 1 329 329 #endif 330 330 -
trunk/Source/WebCore/ChangeLog
r143503 r143505 1 2013-02-20 Dirk Schulze <krit@webkit.org> 2 3 Enable CANVAS_PATH flag 4 https://bugs.webkit.org/show_bug.cgi?id=108508 5 6 Reviewed by Simon Fraser. 7 8 Enable CANVAS_PATH flag on trunk. 9 10 Existing tests cover the feature. 11 12 * Configurations/FeatureDefines.xcconfig: 13 1 14 2013-02-20 Sheriff Bot <webkit.review.bot@gmail.com> 2 15 -
trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig
r142701 r143505 35 35 ENABLE_ACCELERATED_2D_CANVAS = ; 36 36 ENABLE_BLOB = ENABLE_BLOB; 37 ENABLE_CANVAS_PATH = ;37 ENABLE_CANVAS_PATH = ENABLE_CANVAS_PATH; 38 38 ENABLE_CANVAS_PROXY = ; 39 39 ENABLE_CHANNEL_MESSAGING = ENABLE_CHANNEL_MESSAGING; -
trunk/Source/WebKit/chromium/ChangeLog
r143502 r143505 1 2013-02-20 Dirk Schulze <krit@webkit.org> 2 3 Enable CANVAS_PATH flag 4 https://bugs.webkit.org/show_bug.cgi?id=108508 5 6 Reviewed by Simon Fraser. 7 8 Enable CANVAS_PATH flag on trunk. 9 10 * features.gypi: 11 1 12 2013-02-15 Dirk Schulze <krit@webkit.org> 2 13 -
trunk/Source/WebKit/chromium/features.gypi
r143211 r143505 37 37 'ENABLE_BLOB=1', 38 38 'ENABLE_BLOB_SLICE=1', 39 'ENABLE_CANVAS_PATH= 0',39 'ENABLE_CANVAS_PATH=1', 40 40 'ENABLE_CANVAS_PROXY=1', 41 41 'ENABLE_CHANNEL_MESSAGING=1', -
trunk/Source/WebKit/mac/ChangeLog
r143428 r143505 1 2013-02-20 Dirk Schulze <krit@webkit.org> 2 3 Enable CANVAS_PATH flag 4 https://bugs.webkit.org/show_bug.cgi?id=108508 5 6 Reviewed by Simon Fraser. 7 8 Enable CANVAS_PATH flag on trunk. 9 10 * Configurations/FeatureDefines.xcconfig: 11 1 12 2013-02-19 Tim Horton <timothy_horton@apple.com> 2 13 -
trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig
r142701 r143505 35 35 ENABLE_ACCELERATED_2D_CANVAS = ; 36 36 ENABLE_BLOB = ENABLE_BLOB; 37 ENABLE_CANVAS_PATH = ;37 ENABLE_CANVAS_PATH = ENABLE_CANVAS_PATH; 38 38 ENABLE_CANVAS_PROXY = ; 39 39 ENABLE_CHANNEL_MESSAGING = ENABLE_CHANNEL_MESSAGING; -
trunk/Source/WebKit2/ChangeLog
r143499 r143505 1 2013-02-20 Dirk Schulze <krit@webkit.org> 2 3 Enable CANVAS_PATH flag 4 https://bugs.webkit.org/show_bug.cgi?id=108508 5 6 Reviewed by Simon Fraser. 7 8 Enable CANVAS_PATH flag on trunk. 9 10 * Configurations/FeatureDefines.xcconfig: 11 1 12 2013-02-20 Laszlo Gombos <l.gombos@samsung.com> 2 13 -
trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig
r142701 r143505 35 35 ENABLE_ACCELERATED_2D_CANVAS = ; 36 36 ENABLE_BLOB = ENABLE_BLOB; 37 ENABLE_CANVAS_PATH = ;37 ENABLE_CANVAS_PATH = ENABLE_CANVAS_PATH; 38 38 ENABLE_CANVAS_PROXY = ; 39 39 ENABLE_CHANNEL_MESSAGING = ENABLE_CHANNEL_MESSAGING; -
trunk/Source/cmake/WebKitFeatures.cmake
r142664 r143505 19 19 WEBKIT_OPTION_DEFINE(ENABLE_BATTERY_STATUS "Toggle battery status API support" OFF) 20 20 WEBKIT_OPTION_DEFINE(ENABLE_BLOB "Toggle Blob support" OFF) 21 WEBKIT_OPTION_DEFINE(ENABLE_CANVAS_PATH "Toggle Canvas Path support" O FF)21 WEBKIT_OPTION_DEFINE(ENABLE_CANVAS_PATH "Toggle Canvas Path support" ON) 22 22 WEBKIT_OPTION_DEFINE(ENABLE_CANVAS_PROXY "Toggle CanvasProxy support" OFF) 23 23 WEBKIT_OPTION_DEFINE(ENABLE_CHANNEL_MESSAGING "Toggle MessageChannel and MessagePort support" ON) -
trunk/Tools/ChangeLog
r143504 r143505 1 2013-02-20 Dirk Schulze <krit@webkit.org> 2 3 Enable CANVAS_PATH flag 4 https://bugs.webkit.org/show_bug.cgi?id=108508 5 6 Reviewed by Simon Fraser. 7 8 Enable CANVAS_PATH flag on trunk. 9 10 * Scripts/webkitperl/FeatureList.pm: 11 1 12 2013-02-20 Tony Chang <tony@chromium.org> 2 13 -
trunk/Tools/Scripts/webkitperl/FeatureList.pm
r142617 r143505 166 166 167 167 { option => "canvas-path", desc => "Toggle Canvas Path support", 168 define => "ENABLE_CANVAS_PATH", default => 0, value => \$canvasPathSupport },168 define => "ENABLE_CANVAS_PATH", default => 1, value => \$canvasPathSupport }, 169 169 170 170 { option => "canvas-proxy", desc => "Toggle CanvasProxy support",
Note:
See TracChangeset
for help on using the changeset viewer.