Title: [199757] trunk/Source/WebInspectorUI
- Revision
- 199757
- Author
- [email protected]
- Date
- 2016-04-19 20:52:42 -0700 (Tue, 19 Apr 2016)
Log Message
Web Inspector: Picking Snapshot from navigation bar popup does to switch views
https://bugs.webkit.org/show_bug.cgi?id=156762
Patch by Joseph Pecoraro <[email protected]> on 2016-04-19
Reviewed by Timothy Hatcher.
* UserInterface/Views/TimelineDataGridNodePathComponent.js:
(WebInspector.TimelineDataGridNodePathComponent.prototype.get previousSibling):
(WebInspector.TimelineDataGridNodePathComponent.prototype.get nextSibling):
Wrong represented object provided by TimelineDataGridNodePathComponent.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (199756 => 199757)
--- trunk/Source/WebInspectorUI/ChangeLog 2016-04-20 03:08:33 UTC (rev 199756)
+++ trunk/Source/WebInspectorUI/ChangeLog 2016-04-20 03:52:42 UTC (rev 199757)
@@ -1,3 +1,15 @@
+2016-04-19 Joseph Pecoraro <[email protected]>
+
+ Web Inspector: Picking Snapshot from navigation bar popup does to switch views
+ https://bugs.webkit.org/show_bug.cgi?id=156762
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Views/TimelineDataGridNodePathComponent.js:
+ (WebInspector.TimelineDataGridNodePathComponent.prototype.get previousSibling):
+ (WebInspector.TimelineDataGridNodePathComponent.prototype.get nextSibling):
+ Wrong represented object provided by TimelineDataGridNodePathComponent.
+
2016-04-18 Timothy Hatcher <[email protected]>
Web Inspector: DataGrid should be virtualized so it only renders visible rows
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGridNodePathComponent.js (199756 => 199757)
--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGridNodePathComponent.js 2016-04-20 03:08:33 UTC (rev 199756)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGridNodePathComponent.js 2016-04-20 03:52:42 UTC (rev 199757)
@@ -48,7 +48,7 @@
if (!previousSibling)
return null;
- return new WebInspector.TimelineDataGridNodePathComponent(previousSibling, this.representedObject);
+ return new WebInspector.TimelineDataGridNodePathComponent(previousSibling);
}
get nextSibling()
@@ -60,6 +60,6 @@
if (!nextSibling)
return null;
- return new WebInspector.TimelineDataGridNodePathComponent(nextSibling, this.representedObject);
+ return new WebInspector.TimelineDataGridNodePathComponent(nextSibling);
}
};
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes