| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <body onload="setTimeout(delayedThrowException, 0); throw 'Exception in onload';
"> | |
| 3 <p>Test that uncaught exceptions will be reported to the window.onerror handler.
<a href="https://bugs.webkit.org/show_bug.cgi?id=8519">Bug 8519</a>.</p> | |
| 4 <div id="result"></div> | |
| 5 <script> | |
| 6 if (window.testRunner) { | |
| 7 testRunner.dumpAsText(); | |
| 8 testRunner.waitUntilDone(); | |
| 9 } | |
| 10 | |
| 11 function log(msg) { | |
| 12 document.getElementById("result").innerHTML += msg + "<br>"; | |
| 13 } | |
| 14 | |
| 15 var unhandledErrorCount = 0; | |
| 16 window.onerror = function(msg, url, line, column) | |
| 17 { | |
| 18 url = url ? url.match( /[^\/]+\/?$/ )[0] : url; | |
| 19 log("Main frame window.onerror: " + msg + " at " + url + ", line: " + line +
", column: " + column); | |
| 20 | |
| 21 if (++unhandledErrorCount === 3 && window.testRunner) | |
| 22 testRunner.notifyDone(); | |
| 23 | |
| 24 return true; | |
| 25 } | |
| 26 | |
| 27 function delayedThrowException() | |
| 28 { | |
| 29 throw new Error("Exception in setTimeout"); | |
| 30 } | |
| 31 | |
| 32 function throwException() | |
| 33 { | |
| 34 throw new Error("Inline script exception"); | |
| 35 } | |
| 36 throwException(); | |
| 37 | |
| 38 </script> | |
| 39 </body> | |
| 40 </html> | |
| OLD | NEW |