Changeset 185779 in webkit
- Timestamp:
- Jun 19, 2015, 4:45:35 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/mac/TestExpectations (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/html/HTMLCanvasElement.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r185777 r185779 1 2015-06-19 Dean Jackson <dino@apple.com> 2 3 Extremely large canvas crashes on pre-El Capitan machines 4 https://bugs.webkit.org/show_bug.cgi?id=146169 5 <rdar://problem/21410046> 6 7 Reviewed by Tim Horton. 8 9 Un-skip fast/canvas/canvas-too-large-to-draw.html. 10 11 * platform/mac/TestExpectations: 12 1 13 2015-06-19 Matt Baker <mattbaker@apple.com> 2 14 -
trunk/LayoutTests/platform/mac/TestExpectations
r185702 r185779 1292 1292 [ ElCapitan+ ] http/tests/media/video-throttled-load-metadata.html [ Failure ] 1293 1293 [ ElCapitan+ ] http/tests/security/contentSecurityPolicy/media-src-allowed.html [ Skip ] 1294 1295 # rdar://problem/20575487, rdar://problem/214097691296 [ Mavericks Yosemite ] fast/canvas/canvas-too-large-to-draw.html [ Skip ] -
trunk/Source/WebCore/ChangeLog
r185778 r185779 1 2015-06-19 Dean Jackson <dino@apple.com> 2 3 Extremely large canvas crashes on pre-El Capitan machines 4 https://bugs.webkit.org/show_bug.cgi?id=146169 5 <rdar://problem/21410046> 6 7 Reviewed by Tim Horton. 8 9 On machines before El Capitan, make the maximum canvas size 10 8k by 8k. 11 12 Covered by existing tests. 13 14 * html/HTMLCanvasElement.cpp: 15 1 16 2015-06-19 Tim Horton <timothy_horton@apple.com> 2 17 -
trunk/Source/WebCore/html/HTMLCanvasElement.cpp
r185603 r185779 70 70 #if PLATFORM(IOS) 71 71 static const unsigned MaxCanvasArea = 4096 * 4096; 72 #elif PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101100 73 static const unsigned MaxCanvasArea = 8192 * 8192; 72 74 #else 73 75 static const unsigned MaxCanvasArea = 16384 * 16384;
Note:
See TracChangeset
for help on using the changeset viewer.