Title: [184698] trunk/Source/WebInspectorUI
- Revision
- 184698
- Author
- [email protected]
- Date
- 2015-05-20 22:12:10 -0700 (Wed, 20 May 2015)
Log Message
Web Inspector: Fix WebInspector.StackTrace style
https://bugs.webkit.org/show_bug.cgi?id=145240
Patch by Joseph Pecoraro <[email protected]> on 2015-05-20
Reviewed by Timothy Hatcher.
* UserInterface/Models/StackTrace.js:
Reorder and add our usual marker comments.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (184697 => 184698)
--- trunk/Source/WebInspectorUI/ChangeLog 2015-05-21 05:12:04 UTC (rev 184697)
+++ trunk/Source/WebInspectorUI/ChangeLog 2015-05-21 05:12:10 UTC (rev 184698)
@@ -1,3 +1,13 @@
+2015-05-20 Joseph Pecoraro <[email protected]>
+
+ Web Inspector: Fix WebInspector.StackTrace style
+ https://bugs.webkit.org/show_bug.cgi?id=145240
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Models/StackTrace.js:
+ Reorder and add our usual marker comments.
+
2015-05-19 Joseph Pecoraro <[email protected]>
Web Inspector: Improve Preview for NodeList / array like collections
Modified: trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js (184697 => 184698)
--- trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js 2015-05-21 05:12:04 UTC (rev 184697)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js 2015-05-21 05:12:10 UTC (rev 184698)
@@ -34,6 +34,16 @@
this._callFrames = callFrames;
}
+ // Static
+
+ static fromPayload(payload)
+ {
+ var callFrames = payload.map(WebInspector.CallFrame.fromPayload);
+ return new WebInspector.StackTrace(callFrames);
+ }
+
+ // Public
+
get callFrames()
{
return this._callFrames;
@@ -48,12 +58,4 @@
return null;
}
-
- // Static
-
- static fromPayload(payload)
- {
- var callFrames = payload.map(WebInspector.CallFrame.fromPayload);
- return new WebInspector.StackTrace(callFrames);
- }
};
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes