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

Unified Diff: third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit.html

Issue 2061663002: Convert track-cues* and track-word* tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address nit Created 4 years, 6 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit.html
diff --git a/third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit.html b/third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit.html
index 6a28b4263ac7390b8c465b308ac0adf03a08d480..7cea2662cce3fa5fc2a34b640267472435fe3039 100644
--- a/third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit.html
+++ b/third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit.html
@@ -1,86 +1,35 @@
<!DOCTYPE html>
-<html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
- <script src=../media-file.js></script>
- <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
- (Please avoid writing new tests using video-test.js) -->
- <script src=../video-test.js></script>
- <script>
- var videoCanPlayThrough = false;
- var trackLoaded = false;
-
- var currentCue;
- var currentCueNumber = 0;
-
- function runTests()
- {
- if (!trackLoaded || !videoCanPlayThrough)
- return;
-
- testTrack = document.getElementById("testTrack");
- testExpected("testTrack.track.cues.length", 4);
-
- consoleWrite("");
-
- for (var i = 0; i < testTrack.track.cues.length; ++i) {
- testTrack.track.cues[i].pauseOnExit = (i % 2 == 0);
- }
-
- run("video.play()");
- testExpected("video.paused", false);
- consoleWrite("");
-
- waitForEvent('pause', function() {
- waitForEvent('exit', cueExited, false, true, testTrack.track.cues[currentCueNumber]);
+<title>Tests that the video is paused after cues that have pause-on-exit flag are processed.</title>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="../media-file.js"></script>
+<video controls>
+ <track src="captions-webvtt/simple-captions.vtt" default>
+</video>
+<script>
+async_test(function(t) {
+ var video = document.querySelector("video");
+ var track = document.querySelector("track");
+ track.onload = t.step_func(function() {
+ assert_equals(track.track.cues.length, 4);
+ for (var i = 0; i < track.track.cues.length; ++i) {
+ var cue = track.track.cues[i];
+ if (i % 2 == 0) {
+ cue.pauseOnExit = true;
+ cue.onexit = t.step_func(function(event) {
+ assert_true(video.paused);
+
+ video.play();
+
+ if (event.target.id == 2)
+ t.done();
});
}
-
- function cueExited(evt)
- {
- currentCue = evt.target;
-
-
- testExpected("currentCue.id", currentCueNumber);
- testExpected("video.paused", true);
-
- run("video.play()");
-
- if (currentCueNumber == 2)
- endTest();
-
- currentCueNumber += 2;
-
- consoleWrite("");
- }
-
- function loaded()
- {
- trackLoaded = true;
-
- runTests();
- }
-
- function bodyLoaded()
- {
- findMediaElement();
- video.src = findMediaFile("video", "../content/test");
- }
-
- waitForEventOnce('canplaythrough', function() {
- video.currentTime = 4.00;
- videoCanPlayThrough = true;
-
- runTests();
- });
-
- </script>
- </head>
- <body onload="bodyLoaded()">
- <p>Tests that the video is paused after cues that have pause-on-exit flag are processed</p>
- <video controls>
- <track id="testTrack" src="captions-webvtt/simple-captions.vtt" onload="loaded()" default>
- </video>
- </body>
-</html>
+ }
+ video.src = findMediaFile("video", "../content/test");
+ video.currentTime = 4.00;
+ video.play();
+ assert_false(video.paused);
+ });
+});
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/track/track-cues-pause-on-exit-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698