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

Unified Diff: third_party/WebKit/LayoutTests/media/media-controller-time.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-time.html
diff --git a/third_party/WebKit/LayoutTests/media/media-controller-time.html b/third_party/WebKit/LayoutTests/media/media-controller-time.html
deleted file mode 100644
index 177acc6b90bcc1f021b228519a7387ba482760d2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/media-controller-time.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <script src=media-file.js></script>
- <script src=video-test.js></script>
-
- <script>
- var controller;
- var video;
-
- function start() {
- video = document.getElementById('video');
- run('controller = video.controller');
- controller.addEventListener('canplaythrough', canplaythrough, true);
- var src = findMediaFile('video', 'content/test');
- video.src = src;
- }
-
- function canplaythrough() {
- consoleWrite("EVENT(canplaythrough)");
- controller.removeEventListener('canplaythrough', canplaythrough, true);
- run('video.play()');
- controller.addEventListener('playing', playing, true);
- run('controller.play()');
- }
-
- function playing() {
- consoleWrite("EVENT(playing)");
- controller.removeEventListener('playing', playing, true);
- setTimeout(function () {
- testExpected("controller.currentTime", 0, ">");
- endTest();
- }, 100);
- }
- </script>
- </head>
- <body onload="start()">
- <video id="video" mediaGroup="group" controls></video>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698