[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

yurys at chromium.org yurys at chromium.org
Sun Feb 20 23:53:19 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 1628aae97ff25b33854c2b4bb39c240a17b748b3
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 26 11:43:09 2011 +0000

    2011-01-26  Yury Semikhatsky  <yurys at chromium.org>
    
            Reviewed by Pavel Feldman.
    
            Web Inspector: inspector should start in attached state by default
            https://bugs.webkit.org/show_bug.cgi?id=53165
    
            * WebCoreSupport/WebInspectorClientCF.cpp:
            (WebInspectorClient::inspectorStartsAttached):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76684 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebKit/cf/ChangeLog b/Source/WebKit/cf/ChangeLog
index 9812efa..e2c2c83 100644
--- a/Source/WebKit/cf/ChangeLog
+++ b/Source/WebKit/cf/ChangeLog
@@ -1,3 +1,13 @@
+2011-01-26  Yury Semikhatsky  <yurys at chromium.org>
+
+        Reviewed by Pavel Feldman.
+
+        Web Inspector: inspector should start in attached state by default
+        https://bugs.webkit.org/show_bug.cgi?id=53165
+
+        * WebCoreSupport/WebInspectorClientCF.cpp:
+        (WebInspectorClient::inspectorStartsAttached):
+
 2011-01-25  Yury Semikhatsky  <yurys at chromium.org>
 
         Reviewed by Pavel Feldman.
diff --git a/Source/WebKit/cf/WebCoreSupport/WebInspectorClientCF.cpp b/Source/WebKit/cf/WebCoreSupport/WebInspectorClientCF.cpp
index cefe544..6bf5dbd 100644
--- a/Source/WebKit/cf/WebCoreSupport/WebInspectorClientCF.cpp
+++ b/Source/WebKit/cf/WebCoreSupport/WebInspectorClientCF.cpp
@@ -109,6 +109,8 @@ bool WebInspectorClient::inspectorStartsAttached()
 {
     String value;
     populateSetting(inspectorStartsAttachedSetting, &value);
+    if (value.isEmpty())
+        return true;
     return value == "true";
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list