Changeset 76591 in webkit


Ignore:
Timestamp:
Jan 25, 2011 7:15:33 AM (13 years ago)
Author:
mario@webkit.org
Message:

2011-01-25 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Antonio Gomes.

fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=53073

Make the two steps in the flaky test to be executed sequentially.

  • fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html: Fix flaky test by chaining its two steps up.
  • platform/gtk/Skipped: Unskip test.
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r76589 r76591  
     12011-01-25  Mario Sanchez Prada  <msanchez@igalia.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html is flaky
     6        https://bugs.webkit.org/show_bug.cgi?id=53073
     7
     8        Make the two steps in the flaky test to be executed sequentially.
     9
     10        * fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html:
     11        Fix flaky test by chaining its two steps up.
     12        * platform/gtk/Skipped: Unskip test.
     13
    1142011-01-25  Dirk Schulze  <krit@webkit.org>
    215
  • trunk/LayoutTests/fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html

    r72880 r76591  
    3232    var resultMap1 = [
    3333      ["Down", "start"],
    34       ["", ""]
     34      ["DONE", "DONE"]
    3535    ];
    3636
     
    5353
    5454      setTimeout(step1 , 0);
    55       setTimeout(step2 , 50);
    5655    }
    5756
     
    6160      // focused element ('start') once the best candidate ('end') is not
    6261      // visible in current viewport.
    63       initTest(resultMap1);
     62      initTest(resultMap1, step1Completed);
    6463    }
    6564
     
    7372
    7473      // And 'resultMap2' re-tries to move focus down.
    75       initTest(resultMap2, testCompleted);
     74      initTest(resultMap2, step2Completed);
    7675    }
    7776
    78     function testCompleted()
     77    function step1Completed()
     78    {
     79      setTimeout(step2 , 0);
     80    }
     81
     82    function step2Completed()
    7983    {
    8084      if (window.layoutTestController)
  • trunk/LayoutTests/platform/gtk/Skipped

    r76586 r76591  
    52715271editing/pasteboard/5761530-1.html
    52725272
    5273 # flaky test (see https://bugs.webkit.org/show_bug.cgi?id=53073)
    5274 fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html
    5275 
    52765273# Speech input is not yet enabled.
    52775274fast/speech
Note: See TracChangeset for help on using the changeset viewer.