Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js

Issue 2876623003: [Devtools] Added character limit on name column in devtools (Closed)
Patch Set: [Devtools] Added character limit on name column in devtools Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
index 10beb24e9b87194b2b2098c1630b6a523459a19a..dbb21635a336bdac1f4706536ce01d62f8822e5c 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
@@ -936,7 +936,7 @@ Network.NetworkRequestNode = class extends Network.NetworkNode {
if (!this._nameBadgeElement)
this._nameBadgeElement = this.parentView().badgePool.badgeForURL(this._request.parsedURL);
cell.appendChild(this._nameBadgeElement);
- cell.createTextChild(this._request.networkManager().target().decorateLabel(this._request.name()));
+ cell.createTextChild(this._request.networkManager().target().decorateLabel(this._request.name().trimMiddle(100)));
this._appendSubtitle(cell, this._request.path());
cell.title = this._request.url();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698