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


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

    2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
    
            Not reviewed: Chromium tests fix.
    
            Chromium: provisional interactive ui tests fix.
    
            * src/js/Tests.js:
            (.TestSuite.prototype.testShowStoragePanel.this):
            (.TestSuite.prototype.testShowStoragePanel):
    
    2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
    
            Not reviewed: Chromium tests fix.
    
            Chromium: provisional interactive ui tests fix.
    
            * http/tests/inspector/inspector-test.js:
            (frontend_setupTestEnvironment):
            * inspector/elements-panel-limited-children.html:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64977 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 33c5329..439a351 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
+
+        Not reviewed: Chromium tests fix.
+
+        Chromium: provisional interactive ui tests fix.
+
+        * http/tests/inspector/inspector-test.js:
+        (frontend_setupTestEnvironment):
+        * inspector/elements-panel-limited-children.html:
+
 2010-05-20  MORITA Hajime  <morrita at google.com>
 
         Reviewed by Ojan Vafai.
diff --git a/LayoutTests/http/tests/inspector/inspector-test.js b/LayoutTests/http/tests/inspector/inspector-test.js
index 40ace31..19b301c 100755
--- a/LayoutTests/http/tests/inspector/inspector-test.js
+++ b/LayoutTests/http/tests/inspector/inspector-test.js
@@ -125,7 +125,7 @@ function frontend_dumpTreeItem(treeItem, result, prefix)
 
 function frontend_setupTestEnvironment()
 {
-   WebInspector.showElementsPanel();
+   WebInspector.showPanel("elements");
 }
 
 function frontend_addSniffer(receiver, methodName, override, opt_sticky)
diff --git a/LayoutTests/inspector/elements-panel-limited-children.html b/LayoutTests/inspector/elements-panel-limited-children.html
index bb3035e..5cd0970 100644
--- a/LayoutTests/inspector/elements-panel-limited-children.html
+++ b/LayoutTests/inspector/elements-panel-limited-children.html
@@ -125,7 +125,6 @@ function frontend_revealAndExpandDataNodeInElementsPanel(testController)
 
 function frontend_loadDOM(testController)
 {
-    WebInspector.showPanel("elements");
     testController.waitUntilDone();
     // Need test to be async to expand whole the tree first.
     try {
diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 00b0d49..e4a7a44 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,5 +1,15 @@
 2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
 
+        Not reviewed: Chromium tests fix.
+
+        Chromium: provisional interactive ui tests fix.
+
+        * src/js/Tests.js:
+        (.TestSuite.prototype.testShowStoragePanel.this):
+        (.TestSuite.prototype.testShowStoragePanel):
+
+2010-08-09  Pavel Feldman  <pfeldman at chromium.org>
+
         Not reviewed. Chromium tests fix.
 
         Disable runtime switch for device motion in chromium.
diff --git a/WebKit/chromium/src/js/Tests.js b/WebKit/chromium/src/js/Tests.js
index ac20040..764f624 100644
--- a/WebKit/chromium/src/js/Tests.js
+++ b/WebKit/chromium/src/js/Tests.js
@@ -1852,10 +1852,9 @@ uiTests.runTest = function(name)
 };
 
 (function() {
-var oldShowElementsPanel = WebInspector.showElementsPanel;
-WebInspector.showElementsPanel = function()
+
+function runTests()
 {
-    oldShowElementsPanel.call(this);
     uiTests._populatedInterface = true;
     var name = uiTests._pendingTestName;
     delete uiTests._pendingTestName;
@@ -1863,6 +1862,20 @@ WebInspector.showElementsPanel = function()
         new TestSuite().runTest(name);
 }
 
+var oldShowElementsPanel = WebInspector.showElementsPanel;
+WebInspector.showElementsPanel = function()
+{
+    oldShowElementsPanel.call(this);
+    runTests();
+}
+
+var oldShowPanel = WebInspector.showPanel;
+WebInspector.showPanel = function(name)
+{
+    oldShowPanel.call(this, name);
+    runTests();
+}
+
 })();
 
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list