summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/media-elements/track/track-element/track-webvtt-empty-cue.html
blob: e1f5570250089664dec208924f98b5c77baea6dc (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<title>Empty cues should not be discarded</title>
<script src="track-helpers.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
check_cues_from_track("resources/empty-cue.vtt", function(track) {
    assert_equals(track.cues.length, 3);
});
</script>