From d9a8564b2540b7ef6268bf86fa435cf5eff0df56 Mon Sep 17 00:00:00 2001 From: "yurys@chromium.org" Date: Tue, 26 Jun 2012 09:04:31 +0000 Subject: [PATCH] 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. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121240 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebCore/ChangeLog | 11 +++++++++++ Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js | 1 + 2 files changed, 12 insertions(+) diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 46df104..8ff74f0 100755 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,14 @@ +2012-06-26 Yury Semikhatsky + + 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 Refactoring: Simplify FormController interface diff --git a/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js b/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js index 007c4a3..40b5e30 100644 --- a/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js +++ b/Source/WebCore/inspector/front-end/HeapSnapshotDataGrids.js @@ -379,6 +379,7 @@ WebInspector.HeapSnapshotViewportDataGrid.prototype = { onResize: function() { + WebInspector.HeapSnapshotSortableDataGrid.prototype.onResize.call(this); this.updateVisibleNodes(); }, -- 2.7.4