Index: LayoutTests/fast/events/window-onerror6.html |
diff --git a/LayoutTests/fast/events/window-onerror6.html b/LayoutTests/fast/events/window-onerror6.html |
index 142cd217b7be2fdec377565bfe70dae1de93343a..8b2165336d383adc7c0efa1dc8399456a218cd2a 100644 |
--- a/LayoutTests/fast/events/window-onerror6.html |
+++ b/LayoutTests/fast/events/window-onerror6.html |
@@ -10,10 +10,10 @@ function log(msg) { |
document.getElementById("console").innerHTML += msg + "<br>"; |
} |
-window.onerror = function(msg, url, line) |
+window.onerror = function(msg, url, line, column) |
{ |
url = url ? url.match( /[^\/]+\/?$/ )[0] : url; |
- log("Main frame window.onerror: " + msg + " at " + url + ":" + line); |
+ log("Main frame window.onerror: " + msg + " at " + url + ", line: " + line + ", column: " + column); |
return true; |
} |
</script> |