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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 18:06:02 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 4034cb0812c3676910ef2435083d717e79e9394f
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Dec 7 01:12:43 2010 +0000

    2010-12-06  Emil Eklund  <eae at chromium.org>
    
            Reviewed by Dimitri Glazkov.
    
            Fix for classList perf test, failing due to typo.
            https://bugs.webkit.org/show_bug.cgi?id=50578
    
            * perf/class-list-remove.html: Changed to use the right value.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73418 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index e33f4eb..4232237 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,12 @@
+2010-12-06  Emil Eklund  <eae at chromium.org>
+
+        Reviewed by Dimitri Glazkov.
+
+        Fix for classList perf test, failing due to typo.
+        https://bugs.webkit.org/show_bug.cgi?id=50578
+
+        * perf/class-list-remove.html: Changed to use the right value.
+
 2010-12-06  Cosmin Truta  <ctruta at chromium.org>
 
         Reviewed by Eric Seidel.
diff --git a/LayoutTests/perf/class-list-remove.html b/LayoutTests/perf/class-list-remove.html
index 0e31d93..c393656 100644
--- a/LayoutTests/perf/class-list-remove.html
+++ b/LayoutTests/perf/class-list-remove.html
@@ -24,7 +24,7 @@ function setupFunction2(magnitude)
 function test(magnitude)
 {
     element.className = className;
-    element.classList.remove(s);
+    element.classList.remove(classToRemove);
 }
 
 Magnitude.description('Tests that classList remove is linear.');

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list