Title: [248145] trunk/LayoutTests
Revision
248145
Author
[email protected]
Date
2019-08-01 20:45:39 -0700 (Thu, 01 Aug 2019)

Log Message

fast/forms/ios/file-upload-panel.html is flaky on iOS 13
https://bugs.webkit.org/show_bug.cgi?id=200357
<rdar://problem/53028551>

Reviewed by Zalan Bujtas.

Use UIHelper.activateElementAtHumanSpeed() instead of UIHelper.activateElement()
to address flakiness. If the button taps are issued to quickly, some of them
get swallowed.

* fast/forms/ios/file-upload-panel.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (248144 => 248145)


--- trunk/LayoutTests/ChangeLog	2019-08-02 01:59:08 UTC (rev 248144)
+++ trunk/LayoutTests/ChangeLog	2019-08-02 03:45:39 UTC (rev 248145)
@@ -1,3 +1,17 @@
+2019-08-01  Chris Dumez  <[email protected]>
+
+        fast/forms/ios/file-upload-panel.html is flaky on iOS 13
+        https://bugs.webkit.org/show_bug.cgi?id=200357
+        <rdar://problem/53028551>
+
+        Reviewed by Zalan Bujtas.
+
+        Use UIHelper.activateElementAtHumanSpeed() instead of UIHelper.activateElement()
+        to address flakiness. If the button taps are issued to quickly, some of them
+        get swallowed.
+
+        * fast/forms/ios/file-upload-panel.html:
+
 2019-08-01  Wenson Hsieh  <[email protected]>
 
         [Text autosizing] [iPadOS] Add targeted hacks to address some remaining text autosizing issues

Modified: trunk/LayoutTests/fast/forms/ios/file-upload-panel.html (248144 => 248145)


--- trunk/LayoutTests/fast/forms/ios/file-upload-panel.html	2019-08-02 01:59:08 UTC (rev 248144)
+++ trunk/LayoutTests/fast/forms/ios/file-upload-panel.html	2019-08-02 03:45:39 UTC (rev 248145)
@@ -52,7 +52,7 @@
         debug("* accept = " + accept);
         testInput.accept = accept;
 
-        UIHelper.activateElement(testInput).then(() => {
+        UIHelper.activateElementAtHumanSpeed(testInput).then(() => {
             getFileUploadPickerMenuItems().then((_items) => {
                 items = _items;
                 shouldBeTrue("areArraysEqual(items, " + expectedMenuItems + ")");
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to