OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | 4 <script> |
5 window.isOnErrorTest = true; | 5 window.isOnErrorTest = true; |
6 </script> | 6 </script> |
7 <script src="../js/resources/js-test-pre.js"></script> | 7 <script src="../../resources/js-test.js"></script> |
8 <script src="resources/onerror-test.js"></script> | 8 <script src="resources/onerror-test.js"></script> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
11 <script> | 11 <script> |
12 description("This test should trigger 'window.onerror', and successfully
handle the error."); | 12 description("This test should trigger 'window.onerror', and successfully
handle the error."); |
13 dumpOnErrorArgumentValuesAndReturn(true); | 13 dumpOnErrorArgumentValuesAndReturn(true); |
14 unknownObject.unknownProperty++; // caught by window.onerror | 14 unknownObject.unknownProperty++; // caught by window.onerror |
15 </script> | 15 </script> |
16 </body> | 16 </body> |
17 </html> | 17 </html> |
OLD | NEW |