Title: [237019] trunk/Source/WebInspectorUI
- Revision
- 237019
- Author
- [email protected]
- Date
- 2018-10-10 15:41:25 -0700 (Wed, 10 Oct 2018)
Log Message
Web Inspector: REGRESSION(r236853): Uncaught Exception: undefined is not an object (evaluating 'entry.resource')
https://bugs.webkit.org/show_bug.cgi?id=190442
Reviewed by Joseph Pecoraro.
* UserInterface/Views/NetworkTableContentView.js:
(WI.NetworkTableContentView.prototype.reset):
It's unnecessary to deselect rows in the `WI.Table` when we're about to remove them.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (237018 => 237019)
--- trunk/Source/WebInspectorUI/ChangeLog 2018-10-10 22:25:17 UTC (rev 237018)
+++ trunk/Source/WebInspectorUI/ChangeLog 2018-10-10 22:41:25 UTC (rev 237019)
@@ -1,5 +1,16 @@
2018-10-10 Devin Rousso <[email protected]>
+ Web Inspector: REGRESSION(r236853): Uncaught Exception: undefined is not an object (evaluating 'entry.resource')
+ https://bugs.webkit.org/show_bug.cgi?id=190442
+
+ Reviewed by Joseph Pecoraro.
+
+ * UserInterface/Views/NetworkTableContentView.js:
+ (WI.NetworkTableContentView.prototype.reset):
+ It's unnecessary to deselect rows in the `WI.Table` when we're about to remove them.
+
+2018-10-10 Devin Rousso <[email protected]>
+
Web Inspector: REGRESSION: selection in network table is lost when new entries are added
https://bugs.webkit.org/show_bug.cgi?id=190362
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js (237018 => 237019)
--- trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js 2018-10-10 22:25:17 UTC (rev 237018)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NetworkTableContentView.js 2018-10-10 22:41:25 UTC (rev 237019)
@@ -280,7 +280,6 @@
if (this._table) {
this._selectedResource = null;
- this._table.deselectAll();
this._table.reloadData();
this._hidePopover();
this._hideResourceDetailView();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes