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

Side by Side Diff: third_party/WebKit/LayoutTests/media/event-attributes.html

Issue 1715303002: Add TODOs to convert from video-test.js to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add bug ref Created 4 years, 9 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 <script src=media-file.js></script> 4 <script src=media-file.js></script>
5 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956
6 (Please avoid writing new tests using video-test.js) -->
5 <script src=video-test.js></script> 7 <script src=video-test.js></script>
6 <script> 8 <script>
7 var ratechangeCount = 0; 9 var ratechangeCount = 0;
8 var playingCount = 0; 10 var playingCount = 0;
9 var progressEventCount = 0; 11 var progressEventCount = 0;
10 var pauseEventCount = 0; 12 var pauseEventCount = 0;
11 13
12 function eventHandler() 14 function eventHandler()
13 { 15 {
14 // Don't log progress event since the number and order are platf orm 16 // Don't log progress event since the number and order are platf orm
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 onseeked="eventHandler()" 104 onseeked="eventHandler()"
103 onseeking="eventHandler()" 105 onseeking="eventHandler()"
104 onstalled="eventHandler()" 106 onstalled="eventHandler()"
105 onvolumechange="eventHandler()" 107 onvolumechange="eventHandler()"
106 onwaiting="eventHandler()" 108 onwaiting="eventHandler()"
107 > 109 >
108 </video> 110 </video>
109 111
110 </body> 112 </body>
111 </html> 113 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698