Title: [204391] trunk/Source/WebInspectorUI
Revision
204391
Author
[email protected]
Date
2016-08-11 17:05:09 -0700 (Thu, 11 Aug 2016)

Log Message

REGRESSION (r204264): Web Inspector: Uncaught Exception in Network tab when reloading a web page
https://bugs.webkit.org/show_bug.cgi?id=160781
<rdar://problem/27810452>

Reviewed by Matt Baker.

WebInspector.TimelineDataGrid.prototype.closed was removed in r204264.
Define a stub method on DataGrid so it's available to all its subclasses.

* UserInterface/Views/DataGrid.js:
this._dataGrid.closed()

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (204390 => 204391)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-08-11 22:27:17 UTC (rev 204390)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-08-12 00:05:09 UTC (rev 204391)
@@ -1,3 +1,17 @@
+2016-08-11  Nikita Vasilyev  <[email protected]>
+
+        REGRESSION (r204264): Web Inspector: Uncaught Exception in Network tab when reloading a web page
+        https://bugs.webkit.org/show_bug.cgi?id=160781
+        <rdar://problem/27810452>
+
+        Reviewed by Matt Baker.
+
+        WebInspector.TimelineDataGrid.prototype.closed was removed in r204264.
+        Define a stub method on DataGrid so it's available to all its subclasses.
+
+        * UserInterface/Views/DataGrid.js:
+        this._dataGrid.closed()
+
 2016-08-10  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Should be able to Edit Node Attributes and Styles for non-UserAgent Shadow DOM nodes

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js (204390 => 204391)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js	2016-08-11 22:27:17 UTC (rev 204390)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js	2016-08-12 00:05:09 UTC (rev 204391)
@@ -1415,6 +1415,11 @@
         }
     }
 
+    closed()
+    {
+        // Implemented by subclasses.
+    }
+
     expand()
     {
         // This is the root, do nothing.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to