| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <head> | 2 <head> |
| 3 <script src="../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <div id="description"></div> | 6 <div id="description"></div> |
| 7 <div id="console"></div> | 7 <div id="console"></div> |
| 8 | 8 |
| 9 <script> | 9 <script> |
| 10 | 10 |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 shouldBe('parseFloat(m.f)', '20'); | 279 shouldBe('parseFloat(m.f)', '20'); |
| 280 | 280 |
| 281 debug(""); | 281 debug(""); |
| 282 debug("Test throwing exception from inverse"); | 282 debug("Test throwing exception from inverse"); |
| 283 m = new WebKitCSSMatrix("matrix(0, 0, 0, 0, 0, 0)"); // not invertible | 283 m = new WebKitCSSMatrix("matrix(0, 0, 0, 0, 0, 0)"); // not invertible |
| 284 shouldThrow('m.inverse()'); | 284 shouldThrow('m.inverse()'); |
| 285 | 285 |
| 286 debug(""); | 286 debug(""); |
| 287 | 287 |
| 288 </script> | 288 </script> |
| 289 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 290 | 289 |
| 291 <script> | 290 <script> |
| 292 </script> | 291 </script> |
| 293 | 292 |
| 294 </body> | 293 </body> |
| 295 </html> | 294 </html> |
| OLD | NEW |