Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_404_omit_subtitles.html

Issue 2695813009: Import wpt@503f5b5f78ec4e87d144f78609f363f0ed0ea8db (Closed)
Patch Set: Skip some tests Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_404_omit_subtitles.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_404_omit_subtitles.html b/third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_404_omit_subtitles.html
index 15b12488b3dc876666665855c5ac2bf23f7602fd..e216ce0797389727b9efe096ad425f1c3d8f8c8c 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_404_omit_subtitles.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/webvtt/rendering/cues-with-video/processing-model/evil/media_404_omit_subtitles.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html>
+<!-- no reftest-wait -->
<title>WebVTT rendering, when media cannot be played (404 error), subtitles are not displayed</title>
<link rel="match" href="media_404_omit_subtitles-ref.html">
<style>
@@ -10,10 +10,12 @@ body { margin:0 }
color: green
}
</style>
-<script src="/common/reftest-wait.js"></script>
-<video width="1280" height="720" autoplay onplaying="this.onplaying = null; this.pause(); takeScreenshot();">
- <source src="videonotfound.webm" type="video/webm">
- <source src="videonotfound.mp4" type="video/mp4">
+<!--
+The subtitles are not expected to render because the "show poster flag"
+is set, so when the track loads it will *not* run "time marches on".
+-->
+<video width="320" height="180" autoplay>
+ <source src="/common/text-plain.txt?pipe=status(404)">
<track src="support/test.vtt">
<script>
document.getElementsByTagName('track')[0].track.mode = 'showing';

Powered by Google App Engine
This is Rietveld 408576698