OLD | NEW |
1 This test checks createLinearGradient with infinite values | 1 This test checks createLinearGradient with infinite values |
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.createLinearGradient(0, 0, 100, NaN) threw exception Error: NotSupporte
dError: DOM Exception 9. | 6 PASS ctx.createLinearGradient(0, 0, 100, NaN) threw exception NotSupportedError:
The implementation did not support the requested type of object or operation.. |
7 PASS ctx.createLinearGradient(0, 0, 100, Infinity) threw exception Error: NotSup
portedError: DOM Exception 9. | 7 PASS ctx.createLinearGradient(0, 0, 100, Infinity) threw exception NotSupportedE
rror: The implementation did not support the requested type of object or operati
on.. |
8 PASS ctx.createLinearGradient(0, 0, 100, -Infinity) threw exception Error: NotSu
pportedError: DOM Exception 9. | 8 PASS ctx.createLinearGradient(0, 0, 100, -Infinity) threw exception NotSupported
Error: The implementation did not support the requested type of object or operat
ion.. |
9 PASS ctx.createLinearGradient(0, 0, NaN, 100) threw exception Error: NotSupporte
dError: DOM Exception 9. | 9 PASS ctx.createLinearGradient(0, 0, NaN, 100) threw exception NotSupportedError:
The implementation did not support the requested type of object or operation.. |
10 PASS ctx.createLinearGradient(0, 0, Infinity, 100) threw exception Error: NotSup
portedError: DOM Exception 9. | 10 PASS ctx.createLinearGradient(0, 0, Infinity, 100) threw exception NotSupportedE
rror: The implementation did not support the requested type of object or operati
on.. |
11 PASS ctx.createLinearGradient(0, 0, -Infinity, 100) threw exception Error: NotSu
pportedError: DOM Exception 9. | 11 PASS ctx.createLinearGradient(0, 0, -Infinity, 100) threw exception NotSupported
Error: The implementation did not support the requested type of object or operat
ion.. |
12 PASS ctx.createLinearGradient(0, NaN, 100, 100) threw exception Error: NotSuppor
tedError: DOM Exception 9. | 12 PASS ctx.createLinearGradient(0, NaN, 100, 100) threw exception NotSupportedErro
r: The implementation did not support the requested type of object or operation.
. |
13 PASS ctx.createLinearGradient(0, Infinity, 100, 100) threw exception Error: NotS
upportedError: DOM Exception 9. | 13 PASS ctx.createLinearGradient(0, Infinity, 100, 100) threw exception NotSupporte
dError: The implementation did not support the requested type of object or opera
tion.. |
14 PASS ctx.createLinearGradient(0, -Infinity, 100, 100) threw exception Error: Not
SupportedError: DOM Exception 9. | 14 PASS ctx.createLinearGradient(0, -Infinity, 100, 100) threw exception NotSupport
edError: The implementation did not support the requested type of object or oper
ation.. |
15 PASS ctx.createLinearGradient(NaN, 0, 100, 100) threw exception Error: NotSuppor
tedError: DOM Exception 9. | 15 PASS ctx.createLinearGradient(NaN, 0, 100, 100) threw exception NotSupportedErro
r: The implementation did not support the requested type of object or operation.
. |
16 PASS ctx.createLinearGradient(Infinity, 0, 100, 100) threw exception Error: NotS
upportedError: DOM Exception 9. | 16 PASS ctx.createLinearGradient(Infinity, 0, 100, 100) threw exception NotSupporte
dError: The implementation did not support the requested type of object or opera
tion.. |
17 PASS ctx.createLinearGradient(-Infinity, 0, 100, 100) threw exception Error: Not
SupportedError: DOM Exception 9. | 17 PASS ctx.createLinearGradient(-Infinity, 0, 100, 100) threw exception NotSupport
edError: The implementation did not support the requested type of object or oper
ation.. |
18 PASS successfullyParsed is true | 18 PASS successfullyParsed is true |
19 | 19 |
20 TEST COMPLETE | 20 TEST COMPLETE |
21 | 21 |
OLD | NEW |