summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_texttrack_moz.html
blob: 0b319746a91e9f8fdc6bc1412667a7966ced1d20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=881976
-->
<head>
  <meta charset='utf-8'>
  <title>Test for Bug 881976 - TextTrackCue Computed Position</title>
  <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="display"></p>
<div id="content">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
  SimpleTest.waitForExplicitFinish();
  SpecialPowers.pushPrefEnv({"set": [["media.webvtt.regions.enabled", true]]},
    function() {
      var video = document.createElement("video");

      // Check if adding a text track manually sets the TextTrackList correctly.

      // HTMLTrackElement.textTrackList is an extension available only to
      // privileged code, so we need to access it through the SpecialPowers
      // object.
      video.addTextTrack("subtitles", "", "");
      is(SpecialPowers.unwrap(SpecialPowers.wrap(video.textTracks[0]).textTrackList),
          video.textTracks,
          "The Track's TextTrackList should be the Video's TextTrackList.");


      // Check if loading a Track via a TrackElement sets the TextTrackList correctly.
      video.src = "seek.webm";
      video.preload = "auto";

      var trackElement = document.createElement("track");
      trackElement.src = "basic.vtt";
      trackElement.kind = "subtitles";

      video.appendChild(trackElement);
      document.getElementById("content").appendChild(video);

      video.addEventListener("loadedmetadata", function run_tests() {
        // Re-que run_tests() at the end of the event loop until the track
        // element has loaded its data.
        if (trackElement.readyState == HTMLTrackElement.LOADING) {
          setTimeout(run_tests, 0);
          return;
        }
        is(trackElement.readyState, HTMLTrackElement.LOADED,
            "Track::ReadyState should be set to LOADED.");
        is(SpecialPowers.unwrap(SpecialPowers.wrap(trackElement.track).textTrackList),
           video.textTracks,
           "TrackElement's Track's TextTrackList should be the Video's TextTrackList.");

        SimpleTest.finish();
      });
    }
  );
</script>
</pre>
</body>
</html>