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

Unified Diff: third_party/WebKit/LayoutTests/media/video-controls-fullscreen.js

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/video-controls-fullscreen.js
diff --git a/third_party/WebKit/LayoutTests/media/video-controls-fullscreen.js b/third_party/WebKit/LayoutTests/media/video-controls-fullscreen.js
index 1b78051e03dae8c577283e3185680deacae5bf13..88e275f5691f1d2c90be0216a337b8f6d301900e 100644
--- a/third_party/WebKit/LayoutTests/media/video-controls-fullscreen.js
+++ b/third_party/WebKit/LayoutTests/media/video-controls-fullscreen.js
@@ -6,14 +6,13 @@ function hasFullscreenButton(element)
return size[0] > 0 && size[1] > 0;
}
-function fullscreen_test(controller)
+function fullscreen_test()
{
async_test(function(t)
{
var v1 = document.createElement("video");
var v2 = document.createElement("video");
v1.controls = v2.controls = true;
- v1.controller = v2.controller = controller;
v1.src = findMediaFile("video", "content/test");
v2.src = findMediaFile("audio", "content/test");
document.body.appendChild(v1);

Powered by Google App Engine
This is Rietveld 408576698