[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.22
[framework/web/webkit-efl.git] / LayoutTests / fast / events / window-onerror2.html
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.layoutTestController) {
7     layoutTestController.dumpAsText();
8     layoutTestController.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)
17 {
18     url = url ? url.match( /[^\/]+\/?$/ )[0] : url;
19     log("Main frame window.onerror: " + msg + " at " + url + ":" + line);
20     
21     if (++unhandledErrorCount === 3 && window.layoutTestController)
22         layoutTestController.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>