Changeset 180843 in webkit


Ignore:
Timestamp:
Feb 28, 2015 2:33:34 PM (9 years ago)
Author:
Csaba Osztrogonác
Message:

REGRESSION(r85798): Lists of crashing/timeouting/stderr tests aren't sorted
https://bugs.webkit.org/show_bug.cgi?id=142081

Reviewed by Ryosuke Niwa.

  • fast/harness/results.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r180836 r180843  
     12015-02-28  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        REGRESSION(r85798): Lists of crashing/timeouting/stderr tests aren't sorted
     4        https://bugs.webkit.org/show_bug.cgi?id=142081
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * fast/harness/results.html:
     9
    1102015-02-28  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    211
  • trunk/LayoutTests/fast/harness/results.html

    r167631 r180843  
    739739function testList(tests, header, tableId)
    740740{
    741     tests.sort();
     741    tests.sort(function (a, b) { return a.name.localeCompare(b.name) });
    742742
    743743    var html = '<div' + ((!hasUnexpected(tests) && tableId != 'stderr-table') ? ' class=expected' : '') + ' id=' + tableId + '>' +
Note: See TracChangeset for help on using the changeset viewer.