| Index: third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| index d2107ce90f1168ce481e4dece6e80a8efff28e11..d791afddd5b8394588aed9922c5dccd9d704b5c4 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| @@ -332,7 +332,7 @@ WebInspector.Linkifier.DefaultFormatter.prototype = {
|
| text = text.trimMiddle(this._maxLength);
|
| anchor.textContent = text;
|
|
|
| - var titleText = uiLocation.uiSourceCode.originURL();
|
| + var titleText = uiLocation.uiSourceCode.url();
|
| if (typeof uiLocation.lineNumber === "number")
|
| titleText += ":" + (uiLocation.lineNumber + 1);
|
| anchor.title = titleText;
|
|
|