Title: [253477] trunk/LayoutTests
Revision
253477
Author
[email protected]
Date
2019-12-13 08:29:31 -0800 (Fri, 13 Dec 2019)

Log Message

Unreviewed, address flakiness of fast/scrolling/ios/scroll-event-from-scrollTo.html

* fast/scrolling/ios/scroll-event-from-scrollTo.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (253476 => 253477)


--- trunk/LayoutTests/ChangeLog	2019-12-13 16:24:47 UTC (rev 253476)
+++ trunk/LayoutTests/ChangeLog	2019-12-13 16:29:31 UTC (rev 253477)
@@ -1,5 +1,11 @@
 2019-12-13  Chris Dumez  <[email protected]>
 
+        Unreviewed, address flakiness of fast/scrolling/ios/scroll-event-from-scrollTo.html
+
+        * fast/scrolling/ios/scroll-event-from-scrollTo.html:
+
+2019-12-13  Chris Dumez  <[email protected]>
+
         Unreviewed, rebaseline a couple of iOS swiping tests after r253450
 
         * platform/ios/swipe/main-frame-pinning-requirement-expected.txt:

Modified: trunk/LayoutTests/fast/scrolling/ios/scroll-event-from-scrollTo.html (253476 => 253477)


--- trunk/LayoutTests/fast/scrolling/ios/scroll-event-from-scrollTo.html	2019-12-13 16:24:47 UTC (rev 253476)
+++ trunk/LayoutTests/fast/scrolling/ios/scroll-event-from-scrollTo.html	2019-12-13 16:29:31 UTC (rev 253477)
@@ -24,15 +24,15 @@
 window.addEventListener('scroll', function(e) {
   ++scrollEventCount;
   debug('Received scroll event ' + scrollEventCount);
+  window.setTimeout(function() {
+    shouldBe('scrollEventCount', '1');
+    finishJSTest();
+  }, 10);
 }, false);
 
 function onPageLoad()
 {
     testScrollListener();
-    window.setTimeout(function() {
-      shouldBe('scrollEventCount', '1');
-      finishJSTest();
-    }, 10); // Scroll events are async.
 };
 
 window.addEventListener('load', onPageLoad, false);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to