Title: [121240] trunk/Source/WebCore
Revision
121240
Author
[email protected]
Date
2012-06-26 02:04:31 -0700 (Tue, 26 Jun 2012)

Log Message

Web Inspector: columns in heap snapshot summary view are not resizable
https://bugs.webkit.org/show_bug.cgi?id=89952

Reviewed by Vsevolod Vlasov.

* inspector/front-end/HeapSnapshotDataGrids.js:
(WebInspector.HeapSnapshotViewportDataGrid.prototype.onResize): overriden method
should call overriden one to make sure column resizers are added to the DataGrid.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121239 => 121240)


--- trunk/Source/WebCore/ChangeLog	2012-06-26 08:25:11 UTC (rev 121239)
+++ trunk/Source/WebCore/ChangeLog	2012-06-26 09:04:31 UTC (rev 121240)
@@ -1,3 +1,14 @@
+2012-06-26  Yury Semikhatsky  <[email protected]>
+
+        Web Inspector: columns in heap snapshot summary view are not resizable
+        https://bugs.webkit.org/show_bug.cgi?id=89952
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/front-end/HeapSnapshotDataGrids.js:
+        (WebInspector.HeapSnapshotViewportDataGrid.prototype.onResize): overriden method
+        should call overriden one to make sure column resizers are added to the DataGrid.
+
 2012-06-26  Kent Tamura  <[email protected]>
 
         Refactoring: Simplify FormController interface

Modified: trunk/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js (121239 => 121240)


--- trunk/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js	2012-06-26 08:25:11 UTC (rev 121239)
+++ trunk/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js	2012-06-26 09:04:31 UTC (rev 121240)
@@ -379,6 +379,7 @@
 
     onResize: function()
     {
+        WebInspector.HeapSnapshotSortableDataGrid.prototype.onResize.call(this);
         this.updateVisibleNodes();
     },
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to