track-webvtt-empty-cue.html (343B)
1 <!DOCTYPE html> 2 <title>Empty cues should not be discarded</title> 3 <script src="track-helpers.js"></script> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <script> 7 check_cues_from_track("resources/empty-cue.vtt", function(track) { 8 assert_equals(track.cues.length, 3); 9 }); 10 </script>