| Index: LayoutTests/fast/events/window-onerror7.html
|
| diff --git a/LayoutTests/fast/events/window-onerror7.html b/LayoutTests/fast/events/window-onerror7.html
|
| index 6e9b26a98094f30efa3cb4c68519983e9a6e3d9c..dd7f14a79ef76763512cec24b1a89bbe37080e96 100644
|
| --- a/LayoutTests/fast/events/window-onerror7.html
|
| +++ b/LayoutTests/fast/events/window-onerror7.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);
|
| throw new Error("Nested error");
|
| }
|
|
|
|
|