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

simon.fraser at apple.com simon.fraser at apple.com
Wed Dec 22 13:54:17 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 34455aa792a0fbb611276b968830f5a937b1e654
Author: simon.fraser at apple.com <simon.fraser at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 29 05:59:21 2010 +0000

    2010-09-28  Simon Fraser  <simon.fraser at apple.com>
    
            Fix export by adding missing argument.
    
            * CSSTestSuiteHarness/harness/harness.js:
            (TestSuite.prototype.showResultsForAllTests):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68627 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/CSSTestSuiteHarness/harness/harness.js b/WebKitTools/CSSTestSuiteHarness/harness/harness.js
index f7d7664..95262af 100644
--- a/WebKitTools/CSSTestSuiteHarness/harness/harness.js
+++ b/WebKitTools/CSSTestSuiteHarness/harness/harness.js
@@ -748,6 +748,7 @@ TestSuite.prototype.resultsPopupChanged = function(index)
 
 TestSuite.prototype.exportResultsCompletion = function(exportTests)
 {
+  window.console.log('exportResultsCompletion')
   // Lame workaround for ORDER BY not working
   exportTests.sort(function(a, b) {
       return a.test.localeCompare(b.test);
@@ -821,7 +822,7 @@ TestSuite.prototype.showResultsForAllTests = function()
   this.beginAppendingOutput();
 
   var _self = this;
-  this.queryDatabaseForAllTests(
+  this.queryDatabaseForAllTests('test',
     function(item) {
       _self.appendResultToOutput(kHTML4Data, item.test, item.hstatus, item.hcomment);
       _self.appendResultToOutput(kXHTML1Data, item.test, item.xstatus, item.xcomment);
@@ -836,7 +837,7 @@ TestSuite.prototype.exportResultsForAllTests = function()
   var exportTests = [];
 
   var _self = this;
-  this.queryDatabaseForAllTests(
+  this.queryDatabaseForAllTests('test',
       function(item) {
         var htmlLine= _self.createExportLine(kHTML4Data, item.test, item.hstatus, item.hcomment);
         var xhtmlLine = _self.createExportLine(kXHTML1Data, item.test, item.xstatus, item.xcomment);
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 8c9add1..821ba57 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,10 @@
+2010-09-28  Simon Fraser  <simon.fraser at apple.com>
+
+        Fix export by adding missing argument.
+
+        * CSSTestSuiteHarness/harness/harness.js:
+        (TestSuite.prototype.showResultsForAllTests):
+
 2010-09-28  Kevin Ollivier  <kevino at theolliviers.com>
 
         [wx] Build fix, add missing import.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list