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

Side by Side Diff: third_party/WebKit/LayoutTests/media/video-play-pause-exception.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, 6 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 <html> 1 <html>
2 <body> 2 <body>
3 <video controls></video> 3 <video controls></video>
4 4
5 <p>Video has no src. Test that the playing event is not dispatched.</p> 5 <p>Video has no src. Test that the playing event is not dispatched.</p>
6 6
7 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 7 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956
8 (Please avoid writing new tests using video-test.js) --> 8 (Please avoid writing new tests using video-test.js) -->
9 <script src=video-test.js></script> 9 <script src=video-test.js></script>
10 <script> 10 <script>
11 waitForEventAndFail('playing'); 11 waitForEventAndFail('playing');
12 12
13 waitForEvent("loadstart"); 13 waitForEvent("loadstart");
14 waitForEvent("timeupdate"); 14 waitForEvent("timeupdate");
15 waitForEvent("waiting"); 15 waitForEvent("waiting");
16 16
17 function onpause() 17 function onpause()
18 { 18 {
19 testExpected("video.networkState", HTMLMediaElement.NETWORK_EMPTY); 19 testExpected("video.networkState", HTMLMediaElement.NETWORK_EMPTY);
20 endTest(); 20 endTest();
21 consoleWrite(""); 21 consoleWrite("");
22 } 22 }
23 23
24 waitForEvent("pause", onpause); 24 waitForEvent("pause", onpause);
25 25
26 run("video.play()"); 26 run("video.play()");
27 run("video.pause()"); 27 run("video.pause()");
28 </script> 28 </script>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698