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

Unified Diff: third_party/WebKit/LayoutTests/media/media-controller-playback.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-playback.html
diff --git a/third_party/WebKit/LayoutTests/media/media-controller-playback.html b/third_party/WebKit/LayoutTests/media/media-controller-playback.html
deleted file mode 100644
index 8b7f86efc929327e779decebd05b4d0a650aee60..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/media-controller-playback.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <script src=media-file.js></script>
- <script src=video-test.js></script>
-
- <script>
- var controller;
- var video2;
-
- function start() {
- var videos = document.getElementsByTagName('video');
- video = videos[0];
- video2 = videos[1];
- run('controller = video.controller');
- controller.addEventListener('canplaythrough', canplaythrough, true);
- var src = findMediaFile('video', 'content/test');
- video.src = src;
- video2.src = src;
- }
-
- function canplaythrough() {
- consoleWrite("EVENT(canplaythrough)");
- controller.removeEventListener('canplaythrough', canplaythrough, true);
-
- testException("controller.currentTime = -Infinity", '"TypeError: Failed to set the \'currentTime\' property on \'MediaController\': The provided double value is non-finite."');
- testException("controller.currentTime = Infinity", '"TypeError: Failed to set the \'currentTime\' property on \'MediaController\': The provided double value is non-finite."');
- testException("controller.currentTime = NaN", '"TypeError: Failed to set the \'currentTime\' property on \'MediaController\': The provided double value is non-finite."');
-
- controller.addEventListener('playing', playing, true);
- run('controller.play()');
- }
-
- function playing() {
- consoleWrite("EVENT(playing)");
- controller.removeEventListener('playing', playing, true);
- testExpected('controller.paused', false);
- controller.addEventListener('ended', ended, true);
- run('controller.currentTime = 5');
- testExpected('controller.currentTime', 5);
- testExpected('video.currentTime', 5);
- testExpected('video2.currentTime', 5);
- }
-
- function ended() {
- consoleWrite("EVENT(ended)");
- controller.removeEventListener('ended', ended, true);
- endTest();
- }
- </script>
- </head>
- <body onload="start()">
- <video mediaGroup="group" controls></video>
- <video mediaGroup="group" controls></video>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698