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

Side by Side Diff: third_party/WebKit/LayoutTests/media/media-controller-timeupdate.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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>MediaController - timeupdate test</title>
5 <script src=video-test.js></script>
6 <script src=media-file.js></script>
7 <script>
8 var video;
9
10 var start = function() {
11 findMediaElement();
12
13 waitForEvent('canplay', canplay);
14 video.src = findMediaFile("video", "content/test");
15 };
16
17 var canplay = function() {
18 waitForEventAndEnd('timeupdate');
19 run('video.play');
20 };
21 </script>
22 </head>
23 <body>
24 <body onload="start()">
25 <video id="video" mediaGroup="group" controls autoplay></video>
26 </body>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698