Changeset 214820 in webkit


Ignore:
Timestamp:
Apr 3, 2017 11:00:06 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

LayoutTest pointer-lock/mouse-event-delivery.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=167965

Patch by Jeremy Jones <jeremyj@apple.com> on 2017-04-03
Reviewed by Jon Lee.

Wait for wheel event before doing next step of test. The wheel event is delivered asynchronously and
can therefore be delivered later than expected by the test. This is already done for the first one,
do this for the second one also.

  • platform/mac-wk2/TestExpectations:
  • pointer-lock/mouse-event-delivery.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r214819 r214820  
     12017-04-03  Jeremy Jones  <jeremyj@apple.com>
     2
     3        LayoutTest pointer-lock/mouse-event-delivery.html is a flaky failure
     4        https://bugs.webkit.org/show_bug.cgi?id=167965
     5
     6        Reviewed by Jon Lee.
     7
     8        Wait for wheel event before doing next step of test. The wheel event is delivered asynchronously and
     9        can therefore be delivered later than expected by the test. This is already done for the first one,
     10        do this for the second one also.
     11
     12        * platform/mac-wk2/TestExpectations:
     13        * pointer-lock/mouse-event-delivery.html:
     14
    1152017-04-01  Simon Fraser  <simon.fraser@apple.com>
    216
  • trunk/LayoutTests/platform/mac-wk2/TestExpectations

    r214675 r214820  
    620620webkit.org/b/167538 [ Sierra ] fast/css-grid-layout/grid-simplified-layout-positioned.html [ Pass ImageOnlyFailure ]
    621621
    622 webkit.org/b/167965 pointer-lock/mouse-event-delivery.html [ Pass Failure ]
    623 
    624622webkit.org/b/168235 [ Debug ] imported/w3c/web-platform-tests/html/semantics/text-level-semantics/the-a-element/a-download-click.html [ Pass Failure ]
    625623
  • trunk/LayoutTests/pointer-lock/mouse-event-delivery.html

    r211663 r214820  
    9797            debug("     With a lock in place send a wheel event.")
    9898            targetdiv1.onwheel = eventNotExpected;
    99             targetdiv2.onwheel = eventExpected;
     99            targetdiv2.onwheel = eventExpectedThenNextStep;
    100100            document.body.onwheel = eventExpected;
    101101            if (window.eventSender) {
     
    103103                window.eventSender.mouseScrollBy(0,10);
    104104            }
    105             doNextStep();
    106105        },
    107106        function () {
Note: See TracChangeset for help on using the changeset viewer.