OLD | NEW |
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 |
OLD | NEW |