| Index: LayoutTests/fast/events/window-onerror5.html
|
| diff --git a/LayoutTests/fast/events/window-onerror5.html b/LayoutTests/fast/events/window-onerror5.html
|
| index f26089fd9fa2e409155b1f3b689596e78b151952..b0e1c57a7677d4c17f8d0b37c07557f6f5fd1a86 100644
|
| --- a/LayoutTests/fast/events/window-onerror5.html
|
| +++ b/LayoutTests/fast/events/window-onerror5.html
|
| @@ -8,9 +8,9 @@ function log(msg) {
|
|
|
| function test1()
|
| {
|
| - window.onerror = function (error, url, line) {
|
| + window.onerror = function (error, url, line, column) {
|
| url = url ? url.match( /[^\/]+\/?$/ )[0] : url;
|
| - log("Error caught successfully: " + error + "\nFile: " + url + "\nLine: " + line)
|
| + log("Error caught successfully: " + error + "\nFile: " + url + "\nLine: " + line + "\nColumn: " + column)
|
| return true;
|
| };
|
| eval("a(");
|
|
|