[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:50:13 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 8daa397543477c0f6e8e8e07a651ad3faa1510e8
Author: pfeldman at chromium.org <pfeldman at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 9 13:00:22 2010 +0000

    2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
    
            Reviewed by Yury Semikhatsky.
    
            Web Inspector: restore original last panel restore logic.
    
            https://bugs.webkit.org/show_bug.cgi?id=43719
    
            * inspector/front-end/inspector.js:
            (WebInspector.showPanel):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64978 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 439a351..b7d47d6 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,15 @@
 2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
 
+        Reviewed by Yury Semikhatsky.
+
+        Web Inspector: restore original last panel restore logic.
+
+        https://bugs.webkit.org/show_bug.cgi?id=43719
+
+        * platform/chromium/test_expectations.txt:
+
+2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
+
         Not reviewed: Chromium tests fix.
 
         Chromium: provisional interactive ui tests fix.
diff --git a/LayoutTests/platform/chromium/test_expectations.txt b/LayoutTests/platform/chromium/test_expectations.txt
index 0d2c99e..102015f 100644
--- a/LayoutTests/platform/chromium/test_expectations.txt
+++ b/LayoutTests/platform/chromium/test_expectations.txt
@@ -3175,8 +3175,6 @@ BUG51161 LINUX DEBUG : svg/clip-path/clip-path-text.svg = CRASH
 BUGWK43543 : http/tests/misc/isindex-formdata.html = TIMEOUT
 BUGWK43543 : http/tests/misc/isindex-with-no-form-base-href.html = TEXT TIMEOUT
 
-BUGPFELDMAN WIN : http/tests/inspector-enabled/console-log-before-frame-navigation.html = TEXT
-
 // Failure caused by r64749
 BUGSATISH: fast/speech/input-text-speechbutton.html = TIMEOUT
 
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index b36ed3e..b1a3253 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
+
+        Reviewed by Yury Semikhatsky.
+
+        Web Inspector: restore original last panel restore logic.
+
+        https://bugs.webkit.org/show_bug.cgi?id=43719
+
+        * inspector/front-end/inspector.js:
+        (WebInspector.showPanel):
+
 2010-08-09  Dumitru Daniliuc  <dumi at chromium.org>
 
         Unreviewed, fixing the builds after r64967.
diff --git a/WebCore/inspector/front-end/inspector.js b/WebCore/inspector/front-end/inspector.js
index 231e095..7d630bb 100644
--- a/WebCore/inspector/front-end/inspector.js
+++ b/WebCore/inspector/front-end/inspector.js
@@ -1098,10 +1098,8 @@ WebInspector.showChanges = function()
 
 WebInspector.showPanel = function(panel)
 {
-    if (!(panel in this.panels)) {
-        console.error("Unable to show %s panel.", panel);
+    if (!(panel in this.panels))
         panel = "elements";
-    }
     this.currentPanel = this.panels[panel];
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list