Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/imageData-oom-expected.txt

Issue 1414553002: Fix out-of-memory crashes related to ArrayBuffer allocation Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase+more tweaks Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 PASS data = ctx.getImageData(0, 0, 100, 100) threw exception RangeError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': ImageData object creati on failed due to insufficient available memory..
2 PASS data = ctx.getImageData(0, 0, 100, 100) did not throw exception.
3 PASS data = ctx.createImageData(100, 100) threw exception RangeError: Failed to execute 'createImageData' on 'CanvasRenderingContext2D': ImageData object creati on failed due to insufficient available memory..
4 PASS data = ctx.createImageData(100, 100) did not throw exception.
5 PASS data = new ImageData(100, 100) threw exception RangeError: Failed to constr uct 'ImageData': ImageData object creation failed due to insufficient available memory..
6 PASS data = new ImageData(100, 100) did not throw exception.
7 PASS successfullyParsed is true
8
9 TEST COMPLETE
10
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698