blob: 70cac97e297455d7a3eeed23d044e2898c72bbab [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: NOT_SUPPORTED_ERR: DOM Exception 9.
PASS ctx.createImageData(Infinity, 10) threw exception Error: NOT_SUPPORTED_ERR: DOM Exception 9.
PASS ctx.createImageData(-Infinity, 10) threw exception Error: NOT_SUPPORTED_ERR: DOM Exception 9.
PASS ctx.createImageData(10, Infinity) threw exception Error: NOT_SUPPORTED_ERR: DOM Exception 9.
PASS ctx.createImageData(10, -Infinity) threw exception Error: NOT_SUPPORTED_ERR: DOM Exception 9.
PASS ctx.createImageData(NaN, 10) threw exception Error: NOT_SUPPORTED_ERR: DOM Exception 9.
PASS ctx.createImageData(10, NaN) threw exception Error: NOT_SUPPORTED_ERR: DOM Exception 9.
PASS successfullyParsed is true
TEST COMPLETE