Changeset 184698 in webkit
- Timestamp:
- May 20, 2015, 10:12:10 PM (10 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r184602 r184698 1 2015-05-20 Joseph Pecoraro <pecoraro@apple.com> 2 3 Web Inspector: Fix WebInspector.StackTrace style 4 https://bugs.webkit.org/show_bug.cgi?id=145240 5 6 Reviewed by Timothy Hatcher. 7 8 * UserInterface/Models/StackTrace.js: 9 Reorder and add our usual marker comments. 10 1 11 2015-05-19 Joseph Pecoraro <pecoraro@apple.com> 2 12 -
trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js
r184553 r184698 35 35 } 36 36 37 // Static 38 39 static fromPayload(payload) 40 { 41 var callFrames = payload.map(WebInspector.CallFrame.fromPayload); 42 return new WebInspector.StackTrace(callFrames); 43 } 44 45 // Public 46 37 47 get callFrames() 38 48 { … … 49 59 return null; 50 60 } 51 52 // Static53 54 static fromPayload(payload)55 {56 var callFrames = payload.map(WebInspector.CallFrame.fromPayload);57 return new WebInspector.StackTrace(callFrames);58 }59 61 };
Note:
See TracChangeset
for help on using the changeset viewer.