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

Side by Side Diff: third_party/WebKit/LayoutTests/media/track/track-webvtt-tc000-empty.html

Issue 1956213002: Convert track-webvtt-tc[000-002] tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments 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 <title>Tests that an empty file is not recognized as a WebVTT file.</title>
3 <head> 3 <video>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <track src="captions-webvtt/tc000-empty.vtt" default>
5 </video>
6 <script src="../../resources/testharness.js"></script>
7 <script src="../../resources/testharnessreport.js"></script>
8 <script>
9 async_test(function(t) {
10 var track = document.querySelector("track");
5 11
6 <script src=../media-file.js></script> 12 track.onload = t.step_func_done(function() {
7 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 13 assert_equals(track.track.cues.length, 0);
8 (Please avoid writing new tests using video-test.js) --> 14 });
9 <script src=../video-test.js></script> 15 });
10 <script> 16 </script>
11
12 function trackLoaded()
13 {
14 findMediaElement();
15 testExpected("video.textTracks[0].cues.length", "0");
16
17 endTest();
18 }
19
20 </script>
21 </head>
22 <body>
23 <p>Tests that an empty file is not recognized as a WebVTT file.</p>
24 <video>
25 <track src="captions-webvtt/tc000-empty.vtt" onload="trackLoaded()" default>
26 </video>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698