OLD | NEW |
(Empty) | |
| 1 # DOMMatrix.scale(scale) |
| 2 PASS matrix.is2D is true |
| 3 PASS matrix.isIdentity is true |
| 4 PASS compareMatrix(matrix, [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0,
1 ]) is true |
| 5 PASS result.is2D is true |
| 6 PASS result.isIdentity is false |
| 7 PASS compareMatrix(result, [ 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0,
1 ]) is true |
| 8 PASS matrix.is2D is true |
| 9 PASS matrix.isIdentity is true |
| 10 PASS compareMatrix(matrix, [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0,
1 ]) is true |
| 11 |
| 12 PASS successfullyParsed is true |
| 13 |
| 14 TEST COMPLETE |
| 15 |
OLD | NEW |