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

Unified Diff: webkit/glue/devtools/js/debugger_agent.js

Issue 56181: DevTools: beautify debugger script list. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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: webkit/glue/devtools/js/debugger_agent.js
===================================================================
--- webkit/glue/devtools/js/debugger_agent.js (revision 13010)
+++ webkit/glue/devtools/js/debugger_agent.js (working copy)
@@ -280,8 +280,18 @@
this.parsedScripts_[script.id] = new devtools.ScriptInfo(
script.id, script.lineOffset);
+ var name = script.name;
+ if (name.indexOf('http') == 0) {
+ var slash = name.lastIndexOf('/');
+ if (slash != -1) {
+ name = name.substr(slash + 1);
+ }
+ }
+ if (name.length > 100) {
+ name = name.substr(0, 50) + '...' + name.substr(name.length - 50);
+ }
WebInspector.parsedScriptSource(
- script.id, script.name, script.source, script.lineOffset);
+ script.id, name, script.source, script.lineOffset);
}
};
« 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