Title: [218811] trunk/LayoutTests
Revision
218811
Author
[email protected]
Date
2017-06-26 10:52:46 -0700 (Mon, 26 Jun 2017)

Log Message

Make webrtc/video-replace-track-to-null.html more robust
https://bugs.webkit.org/show_bug.cgi?id=173834

Patch by Youenn Fablet <[email protected]> on 2017-06-26
Reviewed by Eric Carlson.

* webrtc/video-replace-track-to-null.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (218810 => 218811)


--- trunk/LayoutTests/ChangeLog	2017-06-26 17:48:36 UTC (rev 218810)
+++ trunk/LayoutTests/ChangeLog	2017-06-26 17:52:46 UTC (rev 218811)
@@ -1,3 +1,12 @@
+2017-06-26  Youenn Fablet  <[email protected]>
+
+        Make webrtc/video-replace-track-to-null.html more robust
+        https://bugs.webkit.org/show_bug.cgi?id=173834
+
+        Reviewed by Eric Carlson.
+
+        * webrtc/video-replace-track-to-null.html:
+
 2017-06-26  Joanmarie Diggs  <[email protected]>
 
         [ATK] Add support for aria-details and aria-errormessage

Modified: trunk/LayoutTests/webrtc/video-replace-track-to-null.html (218810 => 218811)


--- trunk/LayoutTests/webrtc/video-replace-track-to-null.html	2017-06-26 17:48:36 UTC (rev 218810)
+++ trunk/LayoutTests/webrtc/video-replace-track-to-null.html	2017-06-26 17:52:46 UTC (rev 218811)
@@ -59,11 +59,11 @@
         resolve();
         return;
     }
-    if (++counter === 20) {
+    if (++counter === 40) {
         reject("testCameraImage timed out");
         return;
     }
-    setTimeout(() => testCameraImage(resolve, reject, counter));
+    setTimeout(() => testCameraImage(resolve, reject, counter), 100);
 }
 
 function testStoppedImage()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to