OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="resources/window-onerror.js"> | 3 <script src="resources/window-onerror.js"> |
4 </script> | 4 </script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p>Test that window.onerror is called on window object. <a href="https://bugs.we
bkit.org/show_bug.cgi?id=8519">Bug 8519</a>.</p> | 7 <p>Test that window.onerror is called on window object. <a href="https://bugs.we
bkit.org/show_bug.cgi?id=8519">Bug 8519</a>.</p> |
8 <div id="console"></div> | 8 <div id="console"></div> |
9 <script> | 9 <script> |
10 if (window.testRunner) | 10 if (window.testRunner) |
11 testRunner.dumpAsText(); | 11 testRunner.dumpAsText(); |
12 | 12 |
13 function log(msg) { | 13 function log(msg) { |
14 document.getElementById("console").innerHTML += msg + "<br>"; | 14 document.getElementById("console").innerHTML += msg + "<br>"; |
15 } | 15 } |
16 | 16 |
17 window.onerror = function(msg, url, line) | 17 window.onerror = function(msg, url, line, column) |
18 { | 18 { |
19 url = url ? url.match( /[^\/]+\/?$/ )[0] : url; | 19 url = url ? url.match( /[^\/]+\/?$/ )[0] : url; |
20 log("Main frame window.onerror: " + msg + " at " + url + ":" + line); | 20 log("Main frame window.onerror: " + msg + " at " + url + ", line: " + line +
", column: " + column); |
21 return true; | 21 return true; |
22 } | 22 } |
23 | 23 |
24 throwException(); | 24 throwException(); |
25 | 25 |
26 </script> | 26 </script> |
27 </body> | 27 </body> |
28 </html> | 28 </html> |
OLD | NEW |