From 15c88fff3fb4b4f51c92c2b23dc68231e4d16a8e Mon Sep 17 00:00:00 2001 From: "pvollan@apple.com" Date: Thu, 25 Oct 2018 17:44:38 +0000 Subject: [PATCH] [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: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@237420 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- LayoutTests/ChangeLog | 12 ++++++++++++ LayoutTests/media/track/track-cue-css-expected.html | 3 +-- LayoutTests/media/track/track-cue-css.html | 3 +-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog index 8dd0788..1009560 100644 --- a/LayoutTests/ChangeLog +++ b/LayoutTests/ChangeLog @@ -1,3 +1,15 @@ +2018-10-25 Per Arne Vollan + + [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 REGRESSION (236779) scandinaviandesigns.com product pages auto redirect to product image diff --git a/LayoutTests/media/track/track-cue-css-expected.html b/LayoutTests/media/track/track-cue-css-expected.html index 58f62eb..75593cd 100644 --- a/LayoutTests/media/track/track-cue-css-expected.html +++ b/LayoutTests/media/track/track-cue-css-expected.html @@ -21,8 +21,7 @@ consoleWrite("Test that CSS in VTT file is applied correctly."); findMediaElement(); video.src = findMediaFile('video', '../content/test'); - waitForEvent('seeked', endTest); - waitForEvent('canplaythrough', function() { video.currentTime = .5; }); + waitForEvent('canplaythrough', endTest); } setCaptionDisplayMode('Automatic'); diff --git a/LayoutTests/media/track/track-cue-css.html b/LayoutTests/media/track/track-cue-css.html index f6ea405..18944fb 100644 --- a/LayoutTests/media/track/track-cue-css.html +++ b/LayoutTests/media/track/track-cue-css.html @@ -11,8 +11,7 @@ consoleWrite("Test that CSS in VTT file is applied correctly."); findMediaElement(); video.src = findMediaFile('video', '../content/test'); - waitForEvent('seeked', endTest); - waitForEvent('canplaythrough', function() { video.currentTime = .5; }); + waitForEvent('canplaythrough', endTest); } setCaptionDisplayMode('Automatic'); -- 1.8.3.1