Web Inspector: columns in heap snapshot summary view are not resizable
authoryurys@chromium.org <yurys@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 26 Jun 2012 09:04:31 +0000 (09:04 +0000)
committeryurys@chromium.org <yurys@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 26 Jun 2012 09:04:31 +0000 (09:04 +0000)
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121240 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js

index 46df104..8ff74f0 100755 (executable)
@@ -1,3 +1,14 @@
+2012-06-26  Yury Semikhatsky  <yurys@chromium.org>
+
+        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  <tkent@chromium.org>
 
         Refactoring: Simplify FormController interface
index 007c4a3..40b5e30 100644 (file)
@@ -379,6 +379,7 @@ WebInspector.HeapSnapshotViewportDataGrid.prototype = {
 
     onResize: function()
     {
+        WebInspector.HeapSnapshotSortableDataGrid.prototype.onResize.call(this);
         this.updateVisibleNodes();
     },