| Index: third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js
|
| index f1ad0fd31e048f08cf16dedc260f95b208bac419..461e0d1a60cf4de676d56c090a8b16a3833afe6b 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js
|
| @@ -285,7 +285,7 @@ WebInspector.ConsoleMessage = function(target, source, level, messageText, type,
|
| this.stackTrace = initiator.stack || undefined;
|
| if (initiator.url) {
|
| this.url = initiator.url;
|
| - this.line = (initiator.lineNumber - 1) || 0;
|
| + this.line = initiator.lineNumber || 0;
|
| }
|
| }
|
| }
|
|
|