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

Unified Diff: LayoutTests/media/track/track-in-band-style.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 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: LayoutTests/media/track/track-in-band-style.html
diff --git a/LayoutTests/media/track/track-in-band-style.html b/LayoutTests/media/track/track-in-band-style.html
deleted file mode 100644
index 65efd651f615bf24de6e2613f82a81144d05ed6e..0000000000000000000000000000000000000000
--- a/LayoutTests/media/track/track-in-band-style.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
- <script src=../media-file.js></script>
- <script src=../video-test.js></script>
- <script src=../media-controls.js></script>
-
- <script>
-
- function seeked()
- {
- consoleWrite("<br><i>** Test current cue colors<" + "/i>");
-
- cueDisplayElement = textTrackDisplayElement(video, 'display', 0);
- testExpected("getComputedStyle(cueDisplayElement).color", "rgb(255, 255, 255)");
-
- cueNode = textTrackDisplayElement(video, 'cue');
- testExpected("getComputedStyle(cueNode).backgroundColor", "rgb(0, 0, 0)");
-
- endTest();
- }
-
- function canplaythrough()
- {
- consoleWrite("<br><i>** Check initial in-band track states<" + "/i>");
- run("inbandTrack1 = video.textTracks[0]");
- testExpected("video.textTracks.length", 1);
- testExpected("inbandTrack1.language", "en");
- testExpected("inbandTrack1.kind", "captions");
- inbandTrack1.mode = 'showing';
- run("video.play()");
- setTimeout(function() { video.pause(); video.currentTime = 0.3; }, 1500);
- }
-
- function loaded()
- {
- consoleWrite("Test that style to all cues is applied correctly.");
- findMediaElement();
- video.src = '../content/counting-captioned.mov';
- waitForEvent('seeked', seeked);
- waitForEvent('canplaythrough', canplaythrough);
- }
-
- </script>
- </head>
- <body onload="loaded()">
- <video controls >
- </video>
- </body>
-</html>
« no previous file with comments | « LayoutTests/media/track/track-in-band-expected.txt ('k') | LayoutTests/media/track/track-in-band-style-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698