[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.16-1409-g5afdf4d

pfeldman at chromium.org pfeldman at chromium.org
Thu Dec 3 13:25:50 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 951c4b03e9c6af242a05a3d6ab1cb1295d5e6994
Author: pfeldman at chromium.org <pfeldman at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 3 19:24:56 2009 +0000

    2009-11-03  Pavel Feldman  <pfeldman at chromium.org>
    
            Reviewed by Timothy Hatcher.
    
            Web Inspector: update timeline content boundaries on timer.
    
            https://bugs.webkit.org/show_bug.cgi?id=31072
    
            * inspector/front-end/TimelinePanel.js:
            (WebInspector.TimelinePanel.prototype.refresh):
            (WebInspector.TimelinePanel.prototype._setWindowPosition):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50471 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index fef23a7..2419770 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2009-11-03  Pavel Feldman  <pfeldman at chromium.org>
+
+        Reviewed by Timothy Hatcher.
+
+        Web Inspector: update timeline content boundaries on timer.
+
+        https://bugs.webkit.org/show_bug.cgi?id=31072
+
+        * inspector/front-end/TimelinePanel.js:
+        (WebInspector.TimelinePanel.prototype.refresh):
+        (WebInspector.TimelinePanel.prototype._setWindowPosition):
+
 2009-11-03  Dan Bernstein  <mitz at apple.com>
 
         Reviewed by Anders Carlsson and Beth Dakin.
diff --git a/WebCore/inspector/front-end/TimelinePanel.js b/WebCore/inspector/front-end/TimelinePanel.js
index c3f31da..14f9b72 100644
--- a/WebCore/inspector/front-end/TimelinePanel.js
+++ b/WebCore/inspector/front-end/TimelinePanel.js
@@ -278,6 +278,7 @@ WebInspector.TimelinePanel.prototype = {
     refresh: function()
     {
         WebInspector.AbstractTimelinePanel.prototype.refresh.call(this);
+        this.adjustScrollPosition();
 
         // Clear summary bars.
         var timelines = {};
@@ -398,7 +399,7 @@ WebInspector.TimelinePanel.prototype = {
             this._rightResizeElement.style.left = this.calculator.windowRight*100 + "%";
         }
         this._overviewWindowElement.style.width = (this.calculator.windowRight - this.calculator.windowLeft)*100 + "%";
-        this.refresh();
+        this.needsRefresh = true;
     },
 
     _endWindowDragging: function(event)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list