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

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-playbackrate.html

Issue 2015503002: Move TODO(philipj) to TODO(foolip) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>test playbackRate and defaultPlaybackRate</title> 4 <title>test playbackRate and defaultPlaybackRate</title>
5 <script src=media-file.js></script> 5 <script src=media-file.js></script>
6 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 6 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
7 (Please avoid writing new tests using video-test.js) --> 7 (Please avoid writing new tests using video-test.js) -->
8 <script src=video-test.js></script> 8 <script src=video-test.js></script>
9 <script> 9 <script>
10 var rateChangeCount = 0; 10 var rateChangeCount = 0;
11 11
12 function ratechange() 12 function ratechange()
13 { 13 {
14 consoleWrite("*** checking rates after event"); 14 consoleWrite("*** checking rates after event");
15 switch (++rateChangeCount) 15 switch (++rateChangeCount)
16 { 16 {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 112
113 <body onload="start()"> 113 <body onload="start()">
114 114
115 <video controls > </video> 115 <video controls > </video>
116 <ol> 116 <ol>
117 <li>'playbackRate' should not change when play() is called.</li> 117 <li>'playbackRate' should not change when play() is called.</li>
118 <li>'playbackRate' and 'defaultPlaybackRate' should always return th e last value set.</li> 118 <li>'playbackRate' and 'defaultPlaybackRate' should always return th e last value set.</li>
119 </ol> 119 </ol>
120 </body> 120 </body>
121 </html> 121 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698