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

Side by Side Diff: LayoutTests/fast/canvas/canvas-2d-imageData-create-nonfinite-expected.txt

Issue 16818023: DOMException toString is not correct (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 6 months 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 | Annotate | Revision Log
OLDNEW
1 Test the argument bounds of canvas createImageData. 1 Test the argument bounds of canvas createImageData.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS ctx.createImageData(Infinity, Infinity) threw exception Error: NotSupported Error: DOM Exception 9. 6 PASS ctx.createImageData(Infinity, Infinity) threw exception NotSupportedError: The implementation did not support the requested type of object or operation..
7 PASS ctx.createImageData(Infinity, 10) threw exception Error: NotSupportedError: DOM Exception 9. 7 PASS ctx.createImageData(Infinity, 10) threw exception NotSupportedError: The im plementation did not support the requested type of object or operation..
8 PASS ctx.createImageData(-Infinity, 10) threw exception Error: NotSupportedError : DOM Exception 9. 8 PASS ctx.createImageData(-Infinity, 10) threw exception NotSupportedError: The i mplementation did not support the requested type of object or operation..
9 PASS ctx.createImageData(10, Infinity) threw exception Error: NotSupportedError: DOM Exception 9. 9 PASS ctx.createImageData(10, Infinity) threw exception NotSupportedError: The im plementation did not support the requested type of object or operation..
10 PASS ctx.createImageData(10, -Infinity) threw exception Error: NotSupportedError : DOM Exception 9. 10 PASS ctx.createImageData(10, -Infinity) threw exception NotSupportedError: The i mplementation did not support the requested type of object or operation..
11 PASS ctx.createImageData(NaN, 10) threw exception Error: NotSupportedError: DOM Exception 9. 11 PASS ctx.createImageData(NaN, 10) threw exception NotSupportedError: The impleme ntation did not support the requested type of object or operation..
12 PASS ctx.createImageData(10, NaN) threw exception Error: NotSupportedError: DOM Exception 9. 12 PASS ctx.createImageData(10, NaN) threw exception NotSupportedError: The impleme ntation did not support the requested type of object or operation..
13 PASS successfullyParsed is true 13 PASS successfullyParsed is true
14 14
15 TEST COMPLETE 15 TEST COMPLETE
16 16
OLDNEW
« no previous file with comments | « LayoutTests/editing/selection/extend-expected.txt ('k') | LayoutTests/fast/canvas/canvas-createImageData-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698