| 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 6184cc95d5d4eb1254e5cddb10c6985f96a1c68c..1ab8b5634cf85ac312b7edcf5a948f0d276f0426 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/Linkifier.js
|
| @@ -303,10 +303,9 @@ Components.Linkifier = class {
|
| return;
|
|
|
| Components.Linkifier._bindUILocation(anchor, uiLocation);
|
| - var text = uiLocation.linkText();
|
| var info = Components.Linkifier._linkInfo(anchor);
|
| - info.originalLinkText = text;
|
| - text = text.replace(/([a-f0-9]{7})[a-f0-9]{13}[a-f0-9]*/g, '$1\u2026');
|
| + info.originalLinkText = uiLocation.linkText(true /* skipTrim */);
|
| + var text = info.originalLinkText.replace(/([a-f0-9]{7})[a-f0-9]{13,}/g, '$1\u2026');
|
| if (this._maxLength)
|
| text = text.trimMiddle(this._maxLength);
|
| anchor.textContent = text;
|
|
|