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

Side by Side Diff: third_party/WebKit/LayoutTests/media/track/media-element-enqueue-event-crash.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, 10 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 <script src=../media-controls.js></script> 5 <script src=../media-controls.js></script>
6 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956
7 (Please avoid writing new tests using video-test.js) -->
6 <script src=../video-test.js></script> 8 <script src=../video-test.js></script>
7 9
8 <script> 10 <script>
9 if (window.testRunner) 11 if (window.testRunner)
10 { 12 {
11 testRunner.dumpAsText(); 13 testRunner.dumpAsText();
12 testRunner.waitUntilDone(); 14 testRunner.waitUntilDone();
13 } 15 }
14 16
15 function startTest() 17 function startTest()
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 53
52 <body> 54 <body>
53 <p>Tests that appending events for dispatching doesn't crash</p> 55 <p>Tests that appending events for dispatching doesn't crash</p>
54 <video autoplay id="videoElement"> 56 <video autoplay id="videoElement">
55 <source src="../content/test.ogv"> 57 <source src="../content/test.ogv">
56 <source src="../content/test.mp4"> 58 <source src="../content/test.mp4">
57 <track src="captions-webvtt/captions-fast.vtt" default> 59 <track src="captions-webvtt/captions-fast.vtt" default>
58 </video> 60 </video>
59 </body> 61 </body>
60 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698