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

Unified Diff: third_party/WebKit/LayoutTests/media/video-controls-with-cast-rendering.html

Issue 2846713002: [Media] Added feature flag for new remote playback pipeline (Closed)
Patch Set: Fixed failing layout tests Created 3 years, 8 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/media/video-controls-with-cast-rendering.html
diff --git a/third_party/WebKit/LayoutTests/media/video-controls-with-cast-rendering.html b/third_party/WebKit/LayoutTests/media/video-controls-with-cast-rendering.html
deleted file mode 100644
index bbce17bac6ee625bbcbdead1a7d385648067593c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/video-controls-with-cast-rendering.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <script src="media-file.js"></script>
- <script src="video-paint-test.js"></script>
-</head>
-<body>
- <p>Test controls rendering with cast button.</p>
- <div>
- <video controls></video>
- </div>
- <div>
- <video controls style="width: 320px;"></video>
- </div>
- <div>
- <video controls style="position: absolute; width: 320px;"></video>
- </div>
- <script>
- if (window.internals)
- window.internals.settings.setMockScrollbarsEnabled(true);
-
- var videos = document.getElementsByTagName('video');
- waitForMultipleEvents("canplaythrough", videos.length, function() {
- for (var i = 0; i < videos.length; ++i) {
- videos[i].play();
- videos[i].addEventListener("playing", function(event) {
- event.target.pause();
- event.target.currentTime = 0;
- if(window.internals)
- internals.mediaPlayerRemoteRouteAvailabilityChanged(event.target, true);
- });
- }
- waitForMultipleEvents("seeked", videos.length, function() {
- if (window.testRunner)
- testRunner.notifyDone();
- });
- });
- setSrcByTagName('video', findMediaFile('video', 'content/test'));
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698