| OLD | NEW |
| 1 Check that assigning |null| and |undefined| to currentTransform do not cause cra
shes, but do throw exceptions. | 1 Check that assigning |null| and |undefined| to currentTransform do not cause cra
shes, but do throw exceptions. |
| 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 context.currentTransform = null; threw exception TypeError: Failed to set t
he 'currentTransform' property on 'CanvasRenderingContext2D': currentTransform o
nly accepts a SVGMatrix.. | 6 PASS context.currentTransform = null; threw exception TypeError: Failed to set t
he 'currentTransform' property on 'CanvasRenderingContext2D': The provided value
is not of type 'SVGMatrix'.. |
| 7 PASS context.currentTransform = undef; threw exception TypeError: Failed to set
the 'currentTransform' property on 'CanvasRenderingContext2D': currentTransform
only accepts a SVGMatrix.. | 7 PASS context.currentTransform = undef; threw exception TypeError: Failed to set
the 'currentTransform' property on 'CanvasRenderingContext2D': The provided valu
e is not of type 'SVGMatrix'.. |
| 8 PASS successfullyParsed is true | 8 PASS successfullyParsed is true |
| 9 | 9 |
| 10 TEST COMPLETE | 10 TEST COMPLETE |
| 11 | 11 |
| OLD | NEW |