[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

eric at webkit.org eric at webkit.org
Thu Feb 4 21:29:32 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 50c9f993995ec367a6e16db4b629d5e1d51f7dc1
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 27 14:58:24 2010 +0000

    2010-01-27  Alexander Pavlov  <apavlov at chromium.org>
    
            Reviewed by Timothy Hatcher.
    
            Avoid watch expressions duplication
            https://bugs.webkit.org/show_bug.cgi?id=33996
    
            * inspector/front-end/WatchExpressionsSidebarPane.js:
            (WebInspector.WatchExpressionsSidebarPane.prototype._settingsLoaded):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53933 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 67371ea..505801b 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-01-27  Alexander Pavlov  <apavlov at chromium.org>
+
+        Reviewed by Timothy Hatcher.
+
+        Avoid watch expressions duplication
+        https://bugs.webkit.org/show_bug.cgi?id=33996
+
+        * inspector/front-end/WatchExpressionsSidebarPane.js:
+        (WebInspector.WatchExpressionsSidebarPane.prototype._settingsLoaded):
+
 2010-01-27  Marcus Bulach  <bulach at chromium.org>
 
         Reviewed by Dimitri Glazkov.
diff --git a/WebCore/inspector/front-end/WatchExpressionsSidebarPane.js b/WebCore/inspector/front-end/WatchExpressionsSidebarPane.js
index a4e4867..3655d68 100644
--- a/WebCore/inspector/front-end/WatchExpressionsSidebarPane.js
+++ b/WebCore/inspector/front-end/WatchExpressionsSidebarPane.js
@@ -37,6 +37,8 @@ WebInspector.WatchExpressionsSidebarPane = function()
 WebInspector.WatchExpressionsSidebarPane.prototype = {
     _settingsLoaded: function()
     {
+        this.bodyElement.removeChildren();
+
         this.expanded = WebInspector.settings.watchExpressions.length > 0;
         this.section = new WebInspector.WatchExpressionsSection();
         this.bodyElement.appendChild(this.section.element);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list