From: caseq@chromium.org Date: Mon, 2 Jul 2012 17:20:10 +0000 (+0000) Subject: Web Inspector: incorrect height of main timeline pane after switching to memory mode X-Git-Tag: 070512121124~206 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82d10f7d3a6b342ca624c5cbcb1dff209853e6db;p=profile%2Fivi%2Fwebkit-efl.git Web Inspector: incorrect height of main timeline pane after switching to memory mode https://bugs.webkit.org/show_bug.cgi?id=90387 Reviewed by Pavel Feldman. - update cached container height when setting vertical splitter position. * inspector/front-end/TimelinePanel.js: (WebInspector.TimelinePanel.prototype.set _setSplitterPosition): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121690 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index ccc86a4..da13d15 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,15 @@ +2012-07-02 Andrey Kosyakov + + Web Inspector: incorrect height of main timeline pane after switching to memory mode + https://bugs.webkit.org/show_bug.cgi?id=90387 + + Reviewed by Pavel Feldman. + + - update cached container height when setting vertical splitter position. + + * inspector/front-end/TimelinePanel.js: + (WebInspector.TimelinePanel.prototype.set _setSplitterPosition): + 2012-07-02 Christophe Dumez [MICRODATA] Build failure in html/HTMLPropertiesCollection.h diff --git a/Source/WebCore/inspector/front-end/TimelinePanel.js b/Source/WebCore/inspector/front-end/TimelinePanel.js index c80ec43..83f5e53 100644 --- a/Source/WebCore/inspector/front-end/TimelinePanel.js +++ b/Source/WebCore/inspector/front-end/TimelinePanel.js @@ -180,6 +180,7 @@ WebInspector.TimelinePanel.prototype = { this.splitView.element.style.height = (top - overviewHeight) + "px"; this._timelineMemorySplitter.style.top = (top - 2) + "px"; this._memoryStatistics.setTopPosition(top); + this._containerElementHeight = this._containerElement.clientHeight; }, get calculator()