Web Inspector: it should be possible to copy stack trace from call stack sidebar pane.
Created attachment 85187 [details] Patch.
Sample clipboard: 1. createMenu() at committers-autocomplete.js:275 2. enableAutoComplete() at committers-autocomplete.js:373 3. WebKitCommitters.getCommitters.m_committers() at committers-autocomplete.js:390 4. showEditableField() at field.js:188 5. addListener.O() at yahoo-dom-event.js:8
Comment on attachment 85187 [details] Patch. View in context: https://bugs.webkit.org/attachment.cgi?id=85187&action=review > Source/WebCore/inspector/front-end/CallStackSidebarPane.js:85 > + this._text += WebInspector.UIString("%i. %s() at %s", i + 1, title, subtitle) + "\n"; I am not sure we need numbers. Do Xcode and VS produce those?
(In reply to comment #3) > (From update of attachment 85187 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=85187&action=review > > > Source/WebCore/inspector/front-end/CallStackSidebarPane.js:85 > > + this._text += WebInspector.UIString("%i. %s() at %s", i + 1, title, subtitle) + "\n"; > > I am not sure we need numbers. Do Xcode and VS produce those? XCode: "#n ..." where n is zero based frame number counting from the top VS: no numbers Eclipse: "n ..." where n is one based frame number counting from the bottom
Committed r80655: <http://trac.webkit.org/changeset/80655>