Changeset 73418 in webkit


Ignore:
Timestamp:
Dec 6, 2010 5:12:43 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-12-06 Emil Eklund <eae@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.
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r73415 r73418  
     12010-12-06  Emil Eklund  <eae@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Fix for classList perf test, failing due to typo.
     6        https://bugs.webkit.org/show_bug.cgi?id=50578
     7
     8        * perf/class-list-remove.html: Changed to use the right value.
     9
    1102010-12-06  Cosmin Truta  <ctruta@chromium.org>
    211
  • trunk/LayoutTests/perf/class-list-remove.html

    r68596 r73418  
    2525{
    2626    element.className = className;
    27     element.classList.remove(s);
     27    element.classList.remove(classToRemove);
    2828}
    2929
Note: See TracChangeset for help on using the changeset viewer.