[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 <graouts@apple.com> 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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@250926 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 6d250b7..58f6a7e 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,17 @@
+2019-10-09  Antoine Quint  <graouts@apple.com>
+
+        [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>
+
+        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:
+
 2019-10-09  Alicia Boya García  <aboya@igalia.com>
 
         [MSE][GStreamer] Fix video sometimes not appearing
diff --git a/LayoutTests/fast/events/touch/ios/touchmove-cancelable-after-touchstart.html b/LayoutTests/fast/events/touch/ios/touchmove-cancelable-after-touchstart.html
index 5030269..d3bfb02 100644
--- a/LayoutTests/fast/events/touch/ios/touchmove-cancelable-after-touchstart.html
+++ b/LayoutTests/fast/events/touch/ios/touchmove-cancelable-after-touchstart.html
@@ -38,7 +38,6 @@
                     id: 1,
                     x: ${startX},
                     y: ${startY},
-                    pressure: 0
                 }]
             },
             endEvent: {
@@ -50,10 +49,20 @@
                     id: 1,
                     x: ${endX},
                     y: ${endY},
-                    pressure : 500
                 }]
             }
-        }]
+        },
+        {
+            inputType: "hand",
+            touches: [{
+                inputType: "finger",
+                phase: "ended",
+                id: 1,
+                x: ${endX},
+                y: ${endY},
+            }]
+        }
+        ]
     };
 
     uiController.sendEventStream(JSON.stringify(eventStream), function() {