[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

pfeldman at chromium.org pfeldman at chromium.org
Wed Dec 22 11:55:26 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a36462c3d41b8aec0710bfb346ffda5b8947cd1b
Author: pfeldman at chromium.org <pfeldman at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 11 13:12:08 2010 +0000

    2010-08-11  Pavel Feldman  <pfeldman at chromium.org>
    
            Reviewed by Yury Semikhatsky.
    
            Web Inspector: apply correct fix to storage panel status bar buttons.
    
            https://bugs.webkit.org/show_bug.cgi?id=43846
    
            * inspector/front-end/DatabaseTableView.js:
            (WebInspector.DatabaseTableView.prototype.get statusBarItems):
            * inspector/front-end/StoragePanel.js:
            (WebInspector.StoragePanel.prototype._genericViewSetup):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65149 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7df5db0..7b35d16 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-08-11  Pavel Feldman  <pfeldman at chromium.org>
+
+        Reviewed by Yury Semikhatsky.
+
+        Web Inspector: apply correct fix to storage panel status bar buttons.
+
+        https://bugs.webkit.org/show_bug.cgi?id=43846
+
+        * inspector/front-end/DatabaseTableView.js:
+        (WebInspector.DatabaseTableView.prototype.get statusBarItems):
+        * inspector/front-end/StoragePanel.js:
+        (WebInspector.StoragePanel.prototype._genericViewSetup):
+
 2010-08-11  Kevin Ollivier  <kevino at theolliviers.com>
 
         Reviewed by Adam Barth.
diff --git a/WebCore/inspector/front-end/DatabaseTableView.js b/WebCore/inspector/front-end/DatabaseTableView.js
index 9e6d374..5440763 100644
--- a/WebCore/inspector/front-end/DatabaseTableView.js
+++ b/WebCore/inspector/front-end/DatabaseTableView.js
@@ -46,7 +46,7 @@ WebInspector.DatabaseTableView.prototype = {
 
     get statusBarItems()
     {
-        return [this.refreshButton];
+        return [this.refreshButton.element];
     },
 
     update: function()
diff --git a/WebCore/inspector/front-end/StoragePanel.js b/WebCore/inspector/front-end/StoragePanel.js
index a0d0c50..2d17989 100644
--- a/WebCore/inspector/front-end/StoragePanel.js
+++ b/WebCore/inspector/front-end/StoragePanel.js
@@ -259,7 +259,7 @@ WebInspector.StoragePanel.prototype = {
         this.storageViewStatusBarItemsContainer.removeChildren();
         var statusBarItems = view.statusBarItems || [];
         for (var i = 0; i < statusBarItems.length; ++i)
-            this.storageViewStatusBarItemsContainer.appendChild(statusBarItems[i].element);
+            this.storageViewStatusBarItemsContainer.appendChild(statusBarItems[i]);
     },
 
     closeVisibleView: function()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list