RESOLVED FIXED 127258
Web Inspector: Generate better display names for timer and event Timeline records
https://bugs.webkit.org/show_bug.cgi?id=127258
Summary Web Inspector: Generate better display names for timer and event Timeline rec...
Timothy Hatcher
Reported 2014-01-19 14:48:53 PST
The event record should say what event it was. And the timer record should optionally say what the timer identifier was.
Attachments
Patch (26.88 KB, patch)
2014-01-19 14:56 PST, Timothy Hatcher
joepeck: review+
timothy: commit-queue-
Radar WebKit Bug Importer
Comment 1 2014-01-19 14:49:02 PST
Timothy Hatcher
Comment 2 2014-01-19 14:56:41 PST
Joseph Pecoraro
Comment 3 2014-01-20 13:09:27 PST
Comment on attachment 221597 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=221597&action=review r=me > Source/WebInspectorUI/UserInterface/ScriptTimelineRecord.js:61 > + if (details && !WebInspector.ScriptTimelineRecord._eventDisplayNames) { > + // These display names are not localized because they closely represent > + // the real API name, just with word spaces and Title Case. > + > + var nameMap = new Map; > + nameMap.set("DOMActivate", "DOM Activate"); > + nameMap.set("DOMCharacterDataModified", "DOM Character Data Modified"); > + nameMap.set("DOMContentLoaded", "DOM Content Loaded"); > + nameMap.set("DOMFocusIn", "DOM Focus In"); > + nameMap.set("DOMFocusOut", "DOM Focus Out"); I wonder if a static object literal would be faster, or if this is negligible. I think I'm actually in favor of seeing the actual event name. For example if I want to filter for a "beforecopy" event, I'll type that; not "Before Copy". So I could end up errantly not finding a record? > Source/WebInspectorUI/UserInterface/ScriptTimelineRecord.js:178 > + nameMap.set("webkitcurrentplaybacktargetiswirelesschanged", "Current Playback Target Is Wireless Changed"); My claim to fame. > Source/WebInspectorUI/UserInterface/ScriptTimelineView.js:-46 > - columns.details.title = WebInspector.UIString("Details"); > - columns.details.width = "15%"; > - Should we prefer this 15% be spread out to the others in some way? Give more to location?
Timothy Hatcher
Comment 4 2014-01-20 19:05:33 PST
Note You need to log in before you can comment on or make changes to this bug.