RESOLVED FIXED127270
Web Inspector: Make the TimelineRecordTreeElement location subtitle live
https://bugs.webkit.org/show_bug.cgi?id=127270
Summary Web Inspector: Make the TimelineRecordTreeElement location subtitle live
Timothy Hatcher
Reported 2014-01-20 00:40:22 PST
Fix the FIXME about this.
Attachments
Patch (13.71 KB, patch)
2014-01-20 00:47 PST, Timothy Hatcher
joepeck: review+
timothy: commit-queue-
Timothy Hatcher
Comment 1 2014-01-20 00:47:44 PST
Radar WebKit Bug Importer
Comment 2 2014-01-20 00:59:46 PST
Joseph Pecoraro
Comment 3 2014-01-20 11:00:27 PST
Comment on attachment 221629 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=221629&action=review r=me > Source/WebInspectorUI/UserInterface/SourceCodeLocation.js:55 > + None: "none", // File name not included. > + Short: "short", // Only the file name. > + Full: "full" // Full URL is used. Nit: would be nice to line up the comments. Makes reading what each does much easier. > Source/WebInspectorUI/UserInterface/SourceCodeLocation.js:300 > + // Legacy support for when nameStyle was fullURL and a boolean. > + if (!nameStyle || typeof nameStyle === "boolean") > + nameStyle = nameStyle ? WebInspector.SourceCodeLocation.NameStyle.Full : WebInspector.SourceCodeLocation.NameStyle.Short; I'd rather we update the call sites to use the new enum and nameStyle is never a boolean. > Source/WebInspectorUI/UserInterface/TimelineRecordTreeElement.js:40 > + if (showFullLocationSubtitle) > + this._sourceCodeLocation.populateLiveDisplayLocationString(subtitle, "textContent"); Though the boolean says "showFullLocationSubtitle" it looks like this would defaults to the Short location subtitle.
Timothy Hatcher
Comment 4 2014-01-20 19:05:46 PST
Note You need to log in before you can comment on or make changes to this bug.