Changeset 188827 in webkit


Ignore:
Timestamp:
Aug 22, 2015 12:29:44 PM (9 years ago)
Author:
ap@apple.com
Message:

Tweak a test that became flaky on some machines after r188793.

  • tiled-drawing/scrolling/scroll-snap/scroll-snap-mandatory-borders.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r188819 r188827  
     12015-08-22  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Tweak a test that became flaky on some machines after r188793.
     4
     5        * tiled-drawing/scrolling/scroll-snap/scroll-snap-mandatory-borders.html:
     6
    172015-08-22  Doug Russell  <d_russell@apple.com>
    28
  • trunk/LayoutTests/tiled-drawing/scrolling/scroll-snap/scroll-snap-mandatory-borders.html

    r188793 r188827  
    118118            eventSender.mouseMoveTo(startPosX, startPosY); // Make sure we are just outside the iFrame
    119119            eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'began', 'none');
    120             eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'changed', 'none');
    121             eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'changed', 'none');
     120            eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, 2*dy, 'changed', 'none');
    122121            eventSender.mouseScrollByWithWheelAndMomentumPhases(0, 0, 'ended', 'none');
    123122            eventSender.callAfterScrollingCompletes(function() { return checkForScrollSnap(targetLabel); });
     
    165164            eventSender.mouseMoveTo(startPosX, startPosY);
    166165            eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'began', 'none');
    167             eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'changed', 'none');
    168             eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'changed', 'none');
    169             eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'changed', 'none');
     166            eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, 3*dy, 'changed', 'none');
    170167            eventSender.mouseScrollByWithWheelAndMomentumPhases(0, 0, 'ended', 'none');
    171168            eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'none', 'begin');
    172             eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, dy, 'none', 'continue');
     169            eventSender.mouseScrollByWithWheelAndMomentumPhases(dx, 2*dy, 'none', 'continue');
    173170            eventSender.mouseScrollByWithWheelAndMomentumPhases(0, 0, 'none', 'end');
    174171            eventSender.callAfterScrollingCompletes(function() { return checkForScrollGlide(targetLabel); });
Note: See TracChangeset for help on using the changeset viewer.