blob: 7622c0ecbd80da611b9d21eda23780d7ca60d3d8 [file] [log] [blame]
Test the argument bounds of canvas createImageData.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS ctx.createImageData(Infinity, Infinity) threw exception Error: NotSupportedError: DOM Exception 9.
PASS ctx.createImageData(Infinity, 10) threw exception Error: NotSupportedError: DOM Exception 9.
PASS ctx.createImageData(-Infinity, 10) threw exception Error: NotSupportedError: DOM Exception 9.
PASS ctx.createImageData(10, Infinity) threw exception Error: NotSupportedError: DOM Exception 9.
PASS ctx.createImageData(10, -Infinity) threw exception Error: NotSupportedError: DOM Exception 9.
PASS ctx.createImageData(NaN, 10) threw exception Error: NotSupportedError: DOM Exception 9.
PASS ctx.createImageData(10, NaN) threw exception Error: NotSupportedError: DOM Exception 9.
PASS successfullyParsed is true
TEST COMPLETE