summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/media-elements/track/track-element/track-webvtt-interspersed-non-cue.html
blob: 2287cc2830e868333c01734b4972203b416c8771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<title>An empty line after an identifier line discards the current cue and restarts the cue loop</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/interspersed-non-cue.vtt", function(track) {
    var expected = [
        { text: "First" },
        { text: "Second" }
    ];

    assert_cues_match(track.cues, expected);
});
</script>