Title: [237420] trunk/LayoutTests
Revision
237420
Author
[email protected]
Date
2018-10-25 10:44:38 -0700 (Thu, 25 Oct 2018)

Log Message

[High Sierra/Sierra Release] Layout Test media/track/track-cue-css.html is a flaky image failure
https://bugs.webkit.org/show_bug.cgi?id=190876

Reviewed by Alexey Proskuryakov.

This is a speculative fix; avoid an unnecessary video seek step in test.

* media/track/track-cue-css-expected.html:
* media/track/track-cue-css.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (237419 => 237420)


--- trunk/LayoutTests/ChangeLog	2018-10-25 17:41:35 UTC (rev 237419)
+++ trunk/LayoutTests/ChangeLog	2018-10-25 17:44:38 UTC (rev 237420)
@@ -1,3 +1,15 @@
+2018-10-25  Per Arne Vollan  <[email protected]>
+
+        [High Sierra/Sierra Release] Layout Test media/track/track-cue-css.html is a flaky image failure
+        https://bugs.webkit.org/show_bug.cgi?id=190876
+
+        Reviewed by Alexey Proskuryakov.
+
+        This is a speculative fix; avoid an unnecessary video seek step in test.
+
+        * media/track/track-cue-css-expected.html:
+        * media/track/track-cue-css.html:
+
 2018-10-25  Chris Dumez  <[email protected]>
 
         REGRESSION (236779) scandinaviandesigns.com product pages auto redirect to product image

Modified: trunk/LayoutTests/media/track/track-cue-css-expected.html (237419 => 237420)


--- trunk/LayoutTests/media/track/track-cue-css-expected.html	2018-10-25 17:41:35 UTC (rev 237419)
+++ trunk/LayoutTests/media/track/track-cue-css-expected.html	2018-10-25 17:44:38 UTC (rev 237420)
@@ -21,8 +21,7 @@
             consoleWrite("Test that CSS in VTT file is applied correctly.");
             findMediaElement();
             video.src = "" '../content/test');
-            waitForEvent('seeked', endTest);
-            waitForEvent('canplaythrough', function() { video.currentTime = .5; });
+            waitForEvent('canplaythrough', endTest);
         }
 
         setCaptionDisplayMode('Automatic');

Modified: trunk/LayoutTests/media/track/track-cue-css.html (237419 => 237420)


--- trunk/LayoutTests/media/track/track-cue-css.html	2018-10-25 17:41:35 UTC (rev 237419)
+++ trunk/LayoutTests/media/track/track-cue-css.html	2018-10-25 17:44:38 UTC (rev 237420)
@@ -11,8 +11,7 @@
             consoleWrite("Test that CSS in VTT file is applied correctly.");
             findMediaElement();
             video.src = "" '../content/test');
-            waitForEvent('seeked', endTest);
-            waitForEvent('canplaythrough', function() { video.currentTime = .5; });
+            waitForEvent('canplaythrough', endTest);
         }
 
         setCaptionDisplayMode('Automatic');
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to