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

Unified Diff: third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri-initial-playback-position.html

Issue 1373423003: Remove MediaController (already diabled by REF) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update web-platform-tests expectations Created 5 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: third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri-initial-playback-position.html
diff --git a/third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri-initial-playback-position.html b/third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri-initial-playback-position.html
deleted file mode 100644
index 7388bc71d45962b5ccfbc5d2e47bca723f0c6f81..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri-initial-playback-position.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Test currentTime for media controller when media element is added after a media fragment URI.</title>
- </head>
- <body>
- <video></video>
- <video></video>
- <script src=media-file.js></script>
- <script src=video-test.js></script>
- <script>
- videos = document.getElementsByTagName("video");
- video = videos[0];
- video2 = videos[1];
-
- var src = findMediaFile("video", "content/test");
- video.src = src + "#t=2";
- video.mediaGroup = "group";
- video2.mediaGroup = "group";
- controller = video.controller;
-
- video.addEventListener("loadeddata", function() {
- testExpected("video.currentTime", 2);
- testExpected("video2.currentTime", 0);
- video2.src = src;
- });
-
- video2.addEventListener("loadeddata", function() {
- testExpected("video.currentTime", 2);
- testExpected("video2.currentTime", 2);
- endTest();
- })
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698