Changeset 232166 in webkit


Ignore:
Timestamp:
May 24, 2018 3:06:39 PM (6 years ago)
Author:
rniwa@webkit.org
Message:

REGRESSION: performance-api/performance-observer-entry-sort.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=185385

Reviewed by Saam Barati.

Partially revert r232033 to see if the flaky failure comes back.

  • performance-api/performance-observer-entry-sort.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r232156 r232166  
     12018-05-24  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        REGRESSION: performance-api/performance-observer-entry-sort.html is flaky
     4        ​https://bugs.webkit.org/show_bug.cgi?id=185385
     5
     6        Reviewed by Saam Barati.
     7
     8        Partially revert r232033 to see if the flaky failure comes back.
     9
     10        * performance-api/performance-observer-entry-sort.html:
     11
    1122018-05-24  Chris Dumez  <cdumez@apple.com>
    213
  • trunk/LayoutTests/performance-api/performance-observer-entry-sort.html

    r232033 r232166  
    1616
    1717function wait() {
    18     let start = performance.now();
    19     let now;
    20     do {
    21         now = performance.now();
    22     } while (start === now);
    23     assert(() => now > start);
     18    let now = performance.now();
     19    while (now === performance.now())
     20        continue;
    2421}
    2522
Note: See TracChangeset for help on using the changeset viewer.