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

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

Issue 2030383002: Convert track-webvtt-tc[027-029] tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/track/track-webvtt-tc027-empty-cue-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <title>Tests that unsupported markup is properly ignored.</title>
3 <head> 3 <script src="track-helpers.js"></script>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <script src="../../resources/testharness.js"></script>
5 5 <script src="../../resources/testharnessreport.js"></script>
6 <script src=../media-file.js></script> 6 <script>
7 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 7 // TODO(srirama.m): Correct the title and vtt file description.
8 (Please avoid writing new tests using video-test.js) --> 8 check_cues_from_track("captions-webvtt/tc027-empty-cue.vtt", function(track) {
9 <script src=../video-test.js></script> 9 assert_equals(track.cues.length, 3);
10 <script> 10 });
11 11 </script>
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 empty cues are discarded.</p>
24 <video>
25 <track src="captions-webvtt/tc027-empty-cue.vtt" onload="trackLoaded ()" default>
26 </video>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/track/track-webvtt-tc027-empty-cue-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698