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


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

    2010-09-29  Simon Fraser  <simon.fraser at apple.com>
    
            No review.
    
            References always refert to a file in .xht format, even
            for HTML tests, so fix their loading.
    
            * CSSTestSuiteHarness/harness/harness.js:
            (TestSuite.prototype.loadRef):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68655 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/CSSTestSuiteHarness/harness/harness.js b/WebKitTools/CSSTestSuiteHarness/harness/harness.js
index 95262af..12f24a1 100644
--- a/WebKitTools/CSSTestSuiteHarness/harness/harness.js
+++ b/WebKitTools/CSSTestSuiteHarness/harness/harness.js
@@ -597,8 +597,11 @@ TestSuite.prototype.clearTest = function()
 
 TestSuite.prototype.loadRef = function(test)
 {
+  // Refs are always .xht files
+  var refURL = kTestSuiteHome + kXHTML1Data.path + '/' + test.reference;
+  
   var iframe = document.getElementById('ref-frame');
-  iframe.src = this.urlForTest(testInfo.reference);
+  iframe.src = refURL;
 }
 
 TestSuite.prototype.loadTestByName = function(testName)
@@ -748,7 +751,6 @@ 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);
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index b2a3791..7ab1f58 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-29  Simon Fraser  <simon.fraser at apple.com>
+
+        No review.
+        
+        References always refert to a file in .xht format, even
+        for HTML tests, so fix their loading.
+
+        * CSSTestSuiteHarness/harness/harness.js:
+        (TestSuite.prototype.loadRef):
+
 2010-09-28  Johnny Ding  <jnd at chromium.org>
 
         Reviewed by Adam Barth.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list