Title: [189772] trunk/LayoutTests
Revision
189772
Author
a...@apple.com
Date
2015-09-14 19:28:29 -0700 (Mon, 14 Sep 2015)

Log Message

fast/events/frame-scroll-fake-mouse-move.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=149140

Reviewed by Darin Adler.

* fast/events/frame-scroll-fake-mouse-move.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (189771 => 189772)


--- trunk/LayoutTests/ChangeLog	2015-09-15 02:13:03 UTC (rev 189771)
+++ trunk/LayoutTests/ChangeLog	2015-09-15 02:28:29 UTC (rev 189772)
@@ -1,3 +1,12 @@
+2015-09-14  Alexey Proskuryakov  <a...@apple.com>
+
+        fast/events/frame-scroll-fake-mouse-move.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=149140
+
+        Reviewed by Darin Adler.
+
+        * fast/events/frame-scroll-fake-mouse-move.html:
+
 2015-09-14  Chris Dumez  <cdu...@apple.com>
 
         Drop non-standard [IsIndex] WebKit IDL extended attribute

Modified: trunk/LayoutTests/fast/events/frame-scroll-fake-mouse-move.html (189771 => 189772)


--- trunk/LayoutTests/fast/events/frame-scroll-fake-mouse-move.html	2015-09-15 02:13:03 UTC (rev 189771)
+++ trunk/LayoutTests/fast/events/frame-scroll-fake-mouse-move.html	2015-09-15 02:28:29 UTC (rev 189772)
@@ -7,6 +7,8 @@
     function mouseOver(event)
     {
         passed = true;
+        clearTimeout(timeoutID);
+        finish();
     }
 
     function finish()
@@ -26,7 +28,7 @@
         {
             eventSender.mouseMoveTo(50, 100);
             document.body.scrollTop = 250;
-            setTimeout(finish, 200);
+            timeoutID = setTimeout(finish, 20000);
         }, 200);
     }
 </script>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to