Title: [287477] trunk/LayoutTests
Revision
287477
Author
[email protected]
Date
2021-12-28 17:16:06 -0800 (Tue, 28 Dec 2021)

Log Message

[GTK] fast/mediastream/media-element-current-time.html is failing since added in r256346
https://bugs.webkit.org/show_bug.cgi?id=208120

Reviewed by Philippe Normand.

Wait 10ms after play() to give time to the engine to have the pipeline position going forward.

* fast/mediastream/media-element-current-time.html:
* platform/glib/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (287476 => 287477)


--- trunk/LayoutTests/ChangeLog	2021-12-28 21:43:43 UTC (rev 287476)
+++ trunk/LayoutTests/ChangeLog	2021-12-29 01:16:06 UTC (rev 287477)
@@ -1,3 +1,15 @@
+2021-12-28  Diego Pino Garcia  <[email protected]>
+
+        [GTK] fast/mediastream/media-element-current-time.html is failing since added in r256346
+        https://bugs.webkit.org/show_bug.cgi?id=208120
+
+        Reviewed by Philippe Normand.
+
+        Wait 10ms after play() to give time to the engine to have the pipeline position going forward.
+
+        * fast/mediastream/media-element-current-time.html:
+        * platform/glib/TestExpectations:
+
 2021-12-28  Sam Weinig  <[email protected]>
 
         Update wpt css/css-color tests

Modified: trunk/LayoutTests/fast/mediastream/media-element-current-time.html (287476 => 287477)


--- trunk/LayoutTests/fast/mediastream/media-element-current-time.html	2021-12-28 21:43:43 UTC (rev 287476)
+++ trunk/LayoutTests/fast/mediastream/media-element-current-time.html	2021-12-29 01:16:06 UTC (rev 287477)
@@ -24,6 +24,7 @@
     assert_equals(video.currentTime, currentTime, "video is paused, currentTime must not advance");
 
     await video.play();
+    await new Promise(resolve => setTimeout(resolve, 10));
     assert_greater_than(video.currentTime, currentTime, "Playback has started, currentTime should advance");
 
 }, "Check video.currentTime behavior");

Modified: trunk/LayoutTests/platform/glib/TestExpectations (287476 => 287477)


--- trunk/LayoutTests/platform/glib/TestExpectations	2021-12-28 21:43:43 UTC (rev 287476)
+++ trunk/LayoutTests/platform/glib/TestExpectations	2021-12-29 01:16:06 UTC (rev 287477)
@@ -2289,7 +2289,6 @@
 webkit.org/b/207678 imported/w3c/web-platform-tests/url/a-element-xhtml.xhtml [ Failure ]
 webkit.org/b/207711 [ Debug ] fast/selectors/slow-style-sharing-with-long-cousin-list.html [ Timeout ]
 webkit.org/b/207711 [ Debug ] imported/w3c/web-platform-tests/css/mediaqueries/test_media_queries.html [ Timeout ]
-webkit.org/b/208120 fast/mediastream/media-element-current-time.html [ Failure ]
 webkit.org/b/208121 http/tests/cache/disk-cache/disk-cache-vary-cookie.html [ Failure ]
 webkit.org/b/208139 http/tests/cache/disk-cache/disk-cache-vary-cookie-private.html [ Failure ]
 webkit.org/b/208368 imported/w3c/web-platform-tests/wasm/jsapi/constructor/instantiate-bad-imports.any.worker.html [ Failure Pass ]
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to