Changeset 250926 in webkit


Ignore:
Timestamp:
Oct 9, 2019 1:12:19 PM (4 years ago)
Author:
commit-queue@webkit.org
Message:

[iOS] Layout Test fast/events/touch/ios/touchstart-and-touchend-outside-touchmove-target.html is Timing Out
https://bugs.webkit.org/show_bug.cgi?id=202759
<rdar://problem/56122388>

Patch by Antoine Quint <Antoine Quint> on 2019-10-09
Reviewed by Dean Jackson.

This test would be run after fast/events/touch/ios/touchmove-cancelable-after-touchstart.html which does not
cleanly finish its simulated touch gesture with a touchend. Now that it does both tests can run one after the
other reliably.

  • fast/events/touch/ios/touchmove-cancelable-after-touchstart.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r250922 r250926  
     12019-10-09  Antoine Quint  <graouts@apple.com>
     2
     3        [iOS] Layout Test fast/events/touch/ios/touchstart-and-touchend-outside-touchmove-target.html is Timing Out
     4        https://bugs.webkit.org/show_bug.cgi?id=202759
     5        <rdar://problem/56122388>
     6
     7        Reviewed by Dean Jackson.
     8
     9        This test would be run after fast/events/touch/ios/touchmove-cancelable-after-touchstart.html which does not
     10        cleanly finish its simulated touch gesture with a touchend. Now that it does both tests can run one after the
     11        other reliably.
     12
     13        * fast/events/touch/ios/touchmove-cancelable-after-touchstart.html:
     14
    1152019-10-09  Alicia Boya García  <aboya@igalia.com>
    216
  • trunk/LayoutTests/fast/events/touch/ios/touchmove-cancelable-after-touchstart.html

    r235893 r250926  
    3939                    x: ${startX},
    4040                    y: ${startY},
    41                     pressure: 0
    4241                }]
    4342            },
     
    5150                    x: ${endX},
    5251                    y: ${endY},
    53                     pressure : 500
    5452                }]
    5553            }
    56         }]
     54        },
     55        {
     56            inputType: "hand",
     57            touches: [{
     58                inputType: "finger",
     59                phase: "ended",
     60                id: 1,
     61                x: ${endX},
     62                y: ${endY},
     63            }]
     64        }
     65        ]
    5766    };
    5867
Note: See TracChangeset for help on using the changeset viewer.