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

caseq at chromium.org caseq at chromium.org
Wed Dec 22 13:44:10 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 9d8984c6daf5ed8a0c9a012f158c0674e68c96e6
Author: caseq at chromium.org <caseq at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 24 16:17:06 2010 +0000

    2010-09-24  Andrey Kosyakov  <caseq at chromium.org>
    
            Reviewed by Pavel Feldman.
    
            Web Inspector: Clicking "Select All" in audits panel has no effect when the checkbox is unchecked
            Only add category event listeners to real categories, not to "Select All"
            https://bugs.webkit.org/show_bug.cgi?id=46467
    
            * inspector/front-end/AuditLauncherView.js:
            (WebInspector.AuditLauncherView.prototype._createCategoryElement):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68261 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9c4ac94..fc31bdd 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-09-24  Andrey Kosyakov  <caseq at chromium.org>
+
+        Reviewed by Pavel Feldman.
+
+        Web Inspector: Clicking "Select All" in audits panel has no effect when the checkbox is unchecked
+        Only add category event listeners to real categories, not to "Select All"
+        https://bugs.webkit.org/show_bug.cgi?id=46467
+
+        * inspector/front-end/AuditLauncherView.js:
+        (WebInspector.AuditLauncherView.prototype._createCategoryElement):
+
 2010-09-24  Hans Wennborg  <hans at chromium.org>
 
         Reviewed by Steve Block.
diff --git a/WebCore/inspector/front-end/AuditLauncherView.js b/WebCore/inspector/front-end/AuditLauncherView.js
index 18daee6..a922715 100644
--- a/WebCore/inspector/front-end/AuditLauncherView.js
+++ b/WebCore/inspector/front-end/AuditLauncherView.js
@@ -190,7 +190,8 @@ WebInspector.AuditLauncherView.prototype = {
 
         var element = document.createElement("input");
         element.type = "checkbox";
-        element.addEventListener("click", this._boundCategoryClickListener, false);
+        if (id !== "")
+            element.addEventListener("click", this._boundCategoryClickListener, false);
         labelElement.appendChild(element);
         labelElement.appendChild(document.createTextNode(title));
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list