blob: 6f5e08bb7e5c19fe347f963cf6987419b7091187 [file] [log] [blame]
yurys@chromium.orgc8a06eb2011-01-20 09:28:54 +00001<!DOCTYPE HTML>
2<html>
3<head>
4</head>
5<body>
6<p>Test that window.onerror and "error" event listeners from isolated world are
7invoked for uncaught exceptions in user scripts running in isolate worlds as
8well as for exceptions in the main world.<a href="https://bugs.webkit.org/show_bug.cgi?id=8519">Bug 8519.</a>
9</p>
10<div id="console"></div>
11<script>
12
13var expectedRecordCount = 10;
14var recordCount = 0;
15document.getElementById("console").addEventListener("DOMNodeInserted", function(e) {
rniwa@webkit.orgcc082ecd2012-06-16 03:42:58 +000016 if (++recordCount === expectedRecordCount && window.testRunner)
17 testRunner.notifyDone();
yurys@chromium.orgc8a06eb2011-01-20 09:28:54 +000018}, false);
19
20var throwExceptions = function(isolatedWorld)
21{
22 window.addEventListener("load", function(e) {
yurys@chromium.org1b7f5412011-01-21 09:34:29 +000023 // Do the following call from load listener to make sure error in the setTimeout callback always happens after the error in this listener.
24 setTimeout(function() {
25 throw new Error("Error in " + isolatedWorld + " setTimeout callback.");
26 }, 0);
yurys@chromium.orgc8a06eb2011-01-20 09:28:54 +000027 throw new Error("Error in " + isolatedWorld + " load handler.");
28 }, false);
yurys@chromium.orgc8a06eb2011-01-20 09:28:54 +000029
30 throw new Error("Error in "+ isolatedWorld + " inline script.");
31};
32
33var errorHandlers = function(isolatedWorld)
34{
35 function lastUrlComponent(url) {
36 return url ? url.match( /[^\/]+\/?$/ )[0] : url;
37 }
38
39 function log(msg) {
40 var record = document.createElement("div");
41 record.innerHTML = msg;
42 document.getElementById("console").appendChild(record);
43 }
44
commit-queue@webkit.orgea4879d2016-06-14 03:28:10 +000045 window.onerror = function(msg, url, line, column, error) {
46 log(isolatedWorld + " window.onerror: " + msg + " at " + lastUrlComponent(url) + ":" + line + ":" + column + " " + error, "*");
yurys@chromium.org800b3622011-08-30 10:54:47 +000047 return true;
yurys@chromium.orgc8a06eb2011-01-20 09:28:54 +000048 }
49
50 window.addEventListener("error", function(e) {
51 var url = lastUrlComponent(e.filename);
commit-queue@webkit.orgea4879d2016-06-14 03:28:10 +000052 log(isolatedWorld + " error event listener: " + e.message + " at " + url + ":" + e.lineno + ":" + e.colno + " " + e.error, "*");
yurys@chromium.orgc8a06eb2011-01-20 09:28:54 +000053 e.preventDefault();
54 }, false);
55};
56
rniwa@webkit.orgcc082ecd2012-06-16 03:42:58 +000057if (window.testRunner) {
58 testRunner.dumpAsText();
59 testRunner.waitUntilDone();
60 testRunner.addUserScript("(" + errorHandlers + ")('user script'); (" + throwExceptions + ")('user script')", false, true);
yurys@chromium.orgc8a06eb2011-01-20 09:28:54 +000061}
62
63throwExceptions("main world");
64
65</script>
66</body>
67</html>