summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/media-elements/track/track-element/track-cue-rendering-empty-cue.html
blob: 427189f6fc78074ae13c58e94ae3d02bc0e513b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<title>Empty cues</title>
<script src="/common/media.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(function(t) {
    var video = document.createElement("video");
    video.src = getVideoURI("/media/test");
    video.addTextTrack("captions", "regular captions track", "en");
    video.textTracks[0].addCue(new VTTCue(0, 4, ""));

    video.onplaying = t.step_func_done();
    video.play();
});
</script>