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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js

Issue 2644753002: DevTools: untruncate links on copy (Closed)
Patch Set: ac Created 3 years, 8 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
Index: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
index 66bd6c65c6b197ea0e0fd16103832600bb749da9..f827cb0c68dda5a2179eca85360e266091d40ee4 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js
@@ -367,7 +367,7 @@ Sources.CallStackSidebarPane = class extends UI.SimpleView {
var location = this._itemLocation(item);
if (location) {
var uiLocation = Bindings.debuggerWorkspaceBinding.rawLocationToUILocation(location);
- itemText += ' (' + uiLocation.linkText() + ')';
+ itemText += ' (' + uiLocation.linkText(true /* skipTrim */) + ')';
}
text.push(itemText);
}

Powered by Google App Engine
This is Rietveld 408576698