Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: LayoutTests/fast/events/window-onerror2.html

Issue 19962008: Rewrite the 'window.onerror' tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: *facepalm* Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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>
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/window-onerror16-expected.txt ('k') | LayoutTests/fast/events/window-onerror2-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698