| Index: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| index 49077735edd43c41ef819b528c667a4c7de373f4..e7beb22766e36df0b428c3876c7115dcbbf38f95 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js
|
| @@ -1961,7 +1961,7 @@ UI.createExternalLink = function(url, linkText, className, preventClick) {
|
| }
|
| if (linkText !== url)
|
| a.title = url;
|
| - a.textContent = linkText.trimMiddle(150);
|
| + a.textContent = linkText.trimMiddle(UI.MaxLengthForDisplayedURLs);
|
| a.setAttribute('target', '_blank');
|
|
|
| return a;
|
| @@ -2032,3 +2032,9 @@ UI.createFileSelectorElement = function(callback) {
|
| }
|
| return fileSelectorElement;
|
| };
|
| +
|
| +/**
|
| + * @const
|
| + * @type {number}
|
| + */
|
| +UI.MaxLengthForDisplayedURLs = 150;
|
|
|