OLD | NEW |
1 This test exercises the SVGMatrix interface | 1 This test exercises the SVGMatrix interface |
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 SVGMatrix constructors | 6 SVGMatrix constructors |
7 PASS default constructor | 7 PASS default constructor |
8 | 8 |
9 Test attributes on default matrix | 9 Test attributes on default matrix |
10 PASS m.a is 1 | 10 PASS m.a is 1 |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 Test immutability of inverse | 186 Test immutability of inverse |
187 PASS parseFloat(m.a) is 2 | 187 PASS parseFloat(m.a) is 2 |
188 PASS parseFloat(m.b) is 0 | 188 PASS parseFloat(m.b) is 0 |
189 PASS parseFloat(m.c) is 0 | 189 PASS parseFloat(m.c) is 0 |
190 PASS parseFloat(m.d) is 2 | 190 PASS parseFloat(m.d) is 2 |
191 PASS parseFloat(m.e) is 10 | 191 PASS parseFloat(m.e) is 10 |
192 PASS parseFloat(m.f) is 20 | 192 PASS parseFloat(m.f) is 20 |
193 | 193 |
194 Test throwing exception from inverse | 194 Test throwing exception from inverse |
195 PASS m.inverse() threw exception Error: SVG_MATRIX_NOT_INVERTABLE: DOM SVG Excep
tion 2. | 195 PASS m.inverse() threw exception SVG_MATRIX_NOT_INVERTABLE: An attempt was made
to invert a matrix that is not invertible.. |
196 | 196 |
197 PASS successfullyParsed is true | 197 PASS successfullyParsed is true |
198 | 198 |
199 TEST COMPLETE | 199 TEST COMPLETE |
200 | 200 |
OLD | NEW |