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

Unified Diff: third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri.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.html
diff --git a/third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri.html b/third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri.html
deleted file mode 100644
index 973d3200793f4e49fa3426e766e61f3d29181d02..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/media-controller-media-fragment-uri.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Test currentTime of media controller when one of the element has initial start time greater than 0.</title>
- </head>
- <body>
- <video mediaGroup="group"></video>
- <video mediaGroup="group"></video>
- <script src=media-file.js></script>
- <script src=video-test.js></script>
- <script>
- videos = document.getElementsByTagName('video');
- video = videos[0];
- video2 = videos[1];
- controller = video.controller;
-
- var src = findMediaFile("video", "content/test");
- video.src = src + "#t=2";
- video2.src = src;
- testExpected("video.currentTime", 0);
- testExpected("video2.currentTime", 0);
-
- controller.addEventListener("loadedmetadata", function()
- {
- testExpected("video.currentTime", 2);
- testExpected("video2.currentTime", 2);
- testExpected("controller.currentTime", 2);
- });
-
- waitForEventAndEnd('seeked');
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698